2.1.6 Balance Inquiry
Path:/openapi/card/balance
Method:POST
Content-Type:application/json
Response Content-Type:application/json
Example Request:
{
"card_id": 15723682800000053333
}
Request Parameter:
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| card_id | string | true | Card ID: Id of the card, will return with the Inquiry Card Application Result API (/openapi/card/apply/result) once approved. |
API Response:
| Parameter Name | Type | Description |
|---|---|---|
| code | string | Error code |
| data | Balance information | Data |
| available_balance | string | Available balance |
| card_currency | string | Card currency |
| card_number | string | Card number |
| card_type | string | Card type |
| current_balance | string | Current balance |
| msg | string | Error message |
Example Response:
{
"code": "00000",
"data": {
"available_balance": "100.00",
"card_currency": "usd",
"card_number": "111111******0628",
"card_type": "N/A",
"current_balance": "1000.00"
},
"msg": "ok"
}