2.1.17 Modify Card Limit
Path:/openapi/card/limit
Method:POST
Content-Type:application/json
Response Content-Type:application/json
Description: Currently only support for USD card_
Example Request:
{
"card_id": "00003454323400000028888",
"max_amount_daily": "8888",
"max_amount_monthly": "88888",
"max_amount_single": "888"
}
Request Parameter:
Parameter name | Type | Required | Description |
---|---|---|---|
card_id | string | true | Card ID |
max_amount_daily | string | true | Daily limit,Must be whole number;Limit range:Bigger than 0 and less than 100000000 |
max_amount_monthly | string | true | Monthly limit,Must be whole number;Limit range:Bigger than 0 and less than 100000000 |
max_amount_single | string | true | Single transaction limit,Must be whole number;Limit range:Bigger than 0 and less than 100000000 |
API Response:
Parameter name | Type | Description |
---|---|---|
code | string | Error Code |
data | object | Data object for this respond |
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"
}