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
  • Ping
    GET
  • Authenticate
    POST
  1. Alerts

Create An Alert Recipient

Developing
POST
/data/alert-recipients

Request

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

Examples

Responses

🟢200Success
application/json
Body

🟠401Unauthorized API Access
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://staging.api.joindapayments.com/data/alert-recipients' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Boss",
    "email": "boss@uverus.com",
    "active": true,
    "preferred_channel_id": "af6755af-cfd0-4dee-85ea-5774ce7c1f9d"
}'
Response Response Example
200 - Success
{
    "id": "54bde02c-a73f-4783-9372-705a8e221bd0",
    "name": "Boss",
    "email": "boss@uverus.com",
    "active": true,
    "preferred_channel_id": "af6755af-cfd0-4dee-85ea-5774ce7c1f9d",
    "fallback_channel_id": null,
    "created_at": "2025-05-22T15:01:10.197654+00:00",
    "updated_at": "2025-05-22T15:01:10.197667+00:00"
}
Modified at 2025-05-22 15:00:50
Previous
Get All Alert Recipients
Next
Get An Alert Recipient
Built with