get
https://fin-api.digetpay.com/v1/merchant/account/sdk-tokens
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
List SDK tokens for SoftPOS and mobile integrations. Requires Merchant Portal Bearer token.
Flow
sequenceDiagram
autonumber
participant A as Portal Admin
participant D as DigetPay Portal API
A->>D: GET /merchant/account/sdk-tokens
D-->>A: 200 { tokens[] }
Responses
{
"success": {
"status": 200,
"body": {
"tokens": [
{
"userId": "terminal-user-001",
"label": "Store Terminal 1",
"active": true
}
]
}
}
}{
"failed_unauthorized": {
"status": 401,
"body": {
"statusCode": 401,
"message": "Unauthorized",
"error": "Unauthorized"
}
}
}