Query Card Limit
Check currently configured spending limits.
Request URI
POST
/issuing/card/query-limit
Request Body
Refer to : common
Biz_data :
Name
Type
Description
limit_id
long
Card Limit ID
card_token
string(48)
Card Token
Request Example
{
"app_id": "00000000000000000",
"partner_id": "00000000000000000",
"sub_partner_id": "",
"request_id": "B0CaBeb3-bC66-9FB7-bF26-B9EcddbA",
"timestamp": "2025-04-07 13:56:48",
"format": "JSON",
"version": "2.0",
"random_key": "<generated_key>",
"sign_type": "RSA",
"biz_data": {
"limit_id": 100848
}
}
// The biz_data in this example needs to be encrypted!
Response
Name
Type
Description
limit_id*
long
Card Limit ID
card_token*
string(48)
Card Token
daily_transactions*
integer
Daily Transactions Quality
single_amount*
string
Single Amount
daily_amount*
string
Daily Amount
monthly_amount*
string
Monthly Amount
total_amount
string
Total Limit
Designed for share card
create_time
string
Create time of the card limit
{
"code": "10000",
"msg": "Success",
"total": 1,
"random_key": "<random key used for decryption>",
"sign_type": "RSA",
"app_id": "00000000000000000",
"data": {
"limit_id": 100848,
"card_token": "450620141926",
"daily_transactions": 10000,
"single_amount": "10000.00",
"daily_amount": "10000.00",
"monthly_amount": "10000.00",
"total_amount": "10000.00",
"create_time": "2025-04-07 05:56:46"
}
}
// The data in this example has already been decrypted.
Last updated
Was this helpful?