Joinda Payments API
  1. Authentication
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. Authentication

Authenticate as a Service

Developing
POST
/auth/service

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/auth/service' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "service_name": "string",
    "auth_token": "string"
}'
Response Response Example
200 - Success
{"status":"success","message":"Authentication successful","data":{"service_name":"feather","service_id":"064039ba-9a18-4610-85d9-f5fd656bffe9","access_token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJmZWF0aGVyIiwiZXhwIjoxNzQ2OTUzNDczfQ.ydgGgYMb9c9UuzMuYztVLAJAJf3nhL00TnulqGusRCA"}}
Modified at 2025-12-17 16:32:51
Previous
Retrieve an Account
Next
Authenticate as an Account
Built with