2.1.18查询卡限额
接口地址:/openapi/card/limit/result
请求方式:POST
请求数据类型:application/json
响应数据类型:application/json
接口描述:
请求示例:
{
"card_id": "00003454323400000028888"
}
请求参数:
参数名称 | 必须 | 数据类型 | 参数说明 |
---|---|---|---|
card_id | true | string | 卡ID |
响应参数:
参数名称 | 类型 | 参数说明 |
---|---|---|
code | string | 错误码 |
data | object | 响应数据 |
available_balance | string | 可用余额 |
card_id | string | 卡ID |
card_type | string | 银行卡类型 |
max_amount_daily | string | 日限额 |
max_amount_monthly | string | 月限额 |
max_amount_single | string | 单笔限额 |
msg | string | 错误信息 |
响应示例:
{
"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"
}