Joinda Payments API
  1. Accounts
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
      • Create An Alert Channel
      • Get An Alert Channel
      • Update an Alert Channel
      • Get All Alert Recipients
      • Create An Alert Recipient
      • Get An Alert Recipient
      • Update An Alert Recipient
      • Get All Alerts
      • Get An Alert
  • Services
    • List All Services
      GET
    • Create Service Token
      POST
    • Get Service Details
      GET
    • Update Service Details
      PUT
  • Accounts
    • List All Accounts
      GET
    • Create an Account
      POST
    • Update an Account
      PATCH
    • Retrieve an Account
      GET
  • Authentication
    • Authenticate as a Service
      POST
    • Authenticate as an Account
      POST
    • Account Authentication - Verify OTP
      POST
  • Ping
    GET
  1. Accounts

List All Accounts

Developing
GET
/accounts

Request

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

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://staging.api.joindapayments.com/accounts' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "status": "success",
    "message": "Accounts retrieved successfully",
    "data": [
        {
            "id": "1f126d9a-e504-4c82-b1ed-bee770be6294",
            "username": "user1",
            "email": "dev+user1@joindapayments.com",
            "is_active": true,
            "is_admin": false,
            "created_at": "2025-12-17T12:49:59.803444Z",
            "updated_at": "2025-12-17T12:49:59.803455Z"
        },
        {
            "id": "ab57bbbb-b65a-40f3-9a38-20304543267f",
            "username": "user2",
            "email": "dev+user2@joindapayments.com",
            "is_active": true,
            "is_admin": false,
            "created_at": "2025-12-17T13:03:20.690748Z",
            "updated_at": "2025-12-17T13:03:20.690754Z"
        },
        {
            "id": "18054546-93f0-47e5-900e-83f31edb92a4",
            "username": "user3",
            "email": "dev+user3@joindapayments.com",
            "is_active": true,
            "is_admin": false,
            "created_at": "2025-12-17T13:05:42.157265Z",
            "updated_at": "2025-12-17T13:05:42.157273Z"
        }
    ]
}
Modified at 2025-12-17 13:06:10
Previous
Update Service Details
Next
Create an Account
Built with