Joinda Payments API
  1. Services
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
  • Ping
    GET
  • Authenticate
    POST
  1. Services

Get Service Details

Developing
GET
/services/{service_id}

Request

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

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://staging.api.joindapayments.com/services/' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "status": "success",
    "message": "Service retrieved successfully",
    "data": {
        "id": "350441b7-2757-4f6f-b558-4eb645c5912f",
        "service_name": "internal2",
        "webhook_endpoint": "http://localhost:8082",
        "is_active": true,
        "created_at": "2025-12-16T15:53:50.458975Z",
        "updated_at": "2025-12-16T15:53:50.458984Z"
    }
}
Modified at 2025-12-16 16:04:05
Previous
Create Service Token
Next
Update Service Details
Built with