2.1.18 Enquiry on card limit
Path:/openapi/card/limit/result
Method:POST
Content-Type:application/json
Response Content-Type:application/json
Description:
Example Request:
{
"card_id": "00003454323400000028888"
}
Request Parameter:
Parameter name | Required | Type | Description |
---|---|---|---|
card_id | true | string | Card ID |
API Response:
Parameter name | Type | Description |
---|---|---|
code | string | Error code |
data | object | Response data object |
available_balance | string | Available balance |
card_id | string | Card ID |
card_type | string | Card Type |
max_amount_daily | string | Daily limit |
max_amount_monthly | string | Monthly limit |
max_amount_single | string | Single transaction limit |
msg | string | Error message |
Example Response:
{
"code": "00000",
"data": {
"available_balance": "888888.88",
"card_id": "00003454323400000028888",
"card_type": "share,recharge",
"max_amount_daily": "8888",
"max_amount_monthly": "88888",
"max_amount_single": "888"
},
"msg": "ok"
}