Get Account Balance for Debit Card Account
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.
Request Message description
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
Sample Request
{
"issuerNr": 2,
"accountId": "0123456789",
"accountType": "20"
}
Response Message field description
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. |
Sample Response (success)
{
"code": "00",
"description": "Successful",
"correlationId": "3f7debdd5b7c4107959c216fa228281e",
"ledgerBalance": 0,
"availableBalance": 0
}
Sample Response (failure)
{
"code": "403",
"description": "Access Denied"
}
Updated 7 months ago