This API handles requests to get Card Balance for Prepaid 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 | pan | string | 16 to 19 | true | Card Personal Account Number (PAN) |
POST /card-management/api/v1/card/prepaid/balance
Authorization = Bearer Token
{
"pan": "5060990000000151002"
}
| 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": "aae8ac58e55a4baa80cb58ee2b12d024",
"ledgerBalance": 0,
"availableBalance": 0,
"goodsLimit": 1000000000,
"goodsNrTransLimit": 1000000,
"cashLimit": 1000000000,
"cashNrTransLimit": 1000000,
"paymentLimit": 1000000000,
"paymentNrTransLimit": 1000000,
"cardNotPresentLimit": 1000000000,
"depositCreditLimit": 1000000000
}
{
"code": "403",
"description": "Access Denied"
}