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 Recipient

Developing
PATCH
/data/alert-recipients/{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-recipients/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "string",
    "email": "string",
    "active": true,
    "preferred_channel_id": "string",
    "fallback_channel_id": "string"
}'
Response Response Example
200 - Example 1
{}
Modified at 2025-05-22 15:37:55
Previous
Get An Alert Recipient
Next
Get All Alerts
Built with