This API handles requests to get Account Balance for Debit Cards. This endpoint is protected and only accessible to clients with the authority to view balance.
| Field # | Field name | Data type | Max length | Required | Description |
|---|
| 1 | issuerNr | int | 3 | true | Issuer Number |
| 2 | accountId | string | 10 to 28 | true | Account ID or Number |
| 3 | accountType | string | 2 to 2 | true | Account Type |
POST /card-management/api/v1/card/debit/balance
Authorization = Bearer Token
{
"issuerNr": 2,
"accountId": "0123456789",
"accountType": "20"
}
| Field # | Field name | Description |
|---|
| 1 | code | Internal Response Code |
| 2 | description | Successful or Error Message |
| 3 | correlationId | Request identifier |
| 4 | errors | Errors array if any errors exists. |
{
"code": "00",
"description": "Successful",
"correlationId": "3f7debdd5b7c4107959c216fa228281e",
"ledgerBalance": 0,
"availableBalance": 0
}
{
"code": "403",
"description": "Access Denied"
}