Joinda Payments API
  1. Alerts
Joinda Payments API
  • Wallets
    • Generate Wallet
      POST
    • Get All Wallets
      GET
    • Get Wallet Details
      GET
    • Get Wallet Transactions
      GET
  • Transactions
    • Create New Transaction
      POST
    • Get All Transactions
      GET
    • Get Transaction Details
      GET
  • Networks
    • Validate Wallet Address
      GET
    • Get Supported Networks
      GET
  • Data Access
    • Wallets
      • Get All Wallets
      • Get A Wallet
      • Delete A Wallet
      • Get All System Wallets
      • Get A System Wallet
    • Transactions
      • Get All Transactions
      • Get A Transaction
    • Webhooks
      • Get All Webhook Jobs
      • Get A Webhook Job
      • Update a Webhook Job
      • Get All Webhook Logs
      • Get a Webhook Log
    • Alerts
      • Get All Alert Channels
        GET
      • Create An Alert Channel
        POST
      • Get An Alert Channel
        GET
      • Update an Alert Channel
        PATCH
      • Get All Alert Recipients
        GET
      • Create An Alert Recipient
        POST
      • Get An Alert Recipient
        GET
      • Update An Alert Recipient
        PATCH
      • Get All Alerts
        GET
      • Get An Alert
        GET
  • Services
    • List All Services
      GET
  • Ping
    GET
  • Authenticate
    POST
  1. Alerts

Update an Alert Channel

Developing
PATCH
/data/alert-channels/{id}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠401Unauthorized API Access
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://staging.api.joindapayments.com/data/alert-channels/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "enabled": true,
    "name": "string",
    "description": "string"
}'
Response Response Example
200 - Success
{
    "id": "af6755af-cfd0-4dee-85ea-5774ce7c1f9d",
    "name": "email",
    "description": "Truculenter voro velum deripio absorbeo. Comedo curis vivo artificiose nostrum voluptatibus ante celebrer vitae deprecator. Balbus vulariter arbustum terreo. Aegre deripio totam vestrum. Corrigo cicuta tibi tergo. Depromo celo coadunatio aut adhuc conatus ullus nesciunt.",
    "enabled": false
}
Modified at 2025-05-22 14:34:02
Previous
Get An Alert Channel
Next
Get All Alert Recipients
Built with