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
  • 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. Services

Update Service Details

Developing
PUT
/services/{service_id}
Use this endpoint to activate or deactivate a service. Deactivated services will not be authenticated and so cannot use any endpoint.

Request

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

Body Params application/json

Examples

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://staging.api.joindapayments.com/services/350441b7-2757-4f6f-b558-4eb645c5912f' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "service_name": "",
    "webhook_endpoint": "",
    "webhook_secret": "",
    "is_active": true
}'
Response Response Example
{
    "status": "success",
    "message": "Service updated successfully",
    "data": {
        "id": "350441b7-2757-4f6f-b558-4eb645c5912f",
        "service_name": "",
        "webhook_endpoint": "oo",
        "is_active": false,
        "created_at": "2025-12-16T15:53:50.458975Z",
        "updated_at": "2025-12-16T16:16:50.398688Z"
    }
}
Modified at 2025-12-16 16:27:23
Previous
Get Service Details
Next
List All Accounts
Built with