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

Get All Alert Recipients

Developing
GET
/data/alert-recipients

Request

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

Responses

🟢200Success
application/json
Body

🟠401Unauthorized API Access
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://staging.api.joindapayments.com/data/alert-recipients?name&email&active&preferred_channel_id' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
[
    {
        "id": "c2b374a3-3217-4a2a-90a3-a7e2f2fb1140",
        "name": "Deji",
        "email": "deji.joseph@uverus.com",
        "active": true,
        "preferred_channel_id": "af6755af-cfd0-4dee-85ea-5774ce7c1f9d",
        "fallback_channel_id": null,
        "created_at": "2025-05-11T10:21:53.834810+00:00",
        "updated_at": "2025-05-11T10:21:53.834818+00:00"
    },
    {
        "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 14:45:30
Previous
Update an Alert Channel
Next
Create An Alert Recipient
Built with