Update SDK Token Status

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Enable or disable an SDK token. Requires Merchant Portal Bearer token.

Flow

sequenceDiagram
    autonumber
    participant A as Portal Admin
    participant D as DigetPay Portal API
    participant T as Terminal / SDK

    A->>D: PATCH /merchant/account/sdk-tokens/{userId}
    Note right of A: active: true / false
    D-->>A: 200 { userId, active }
    Note over T: Disabled tokens cannot authenticate

Responses

{
  "success": {
    "status": 200,
    "body": {
      "userId": "terminal-user-001",
      "active": false
    }
  }
}

Guide →

Path Params
string
required
Response

Language
Credentials
Bearer
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json