Query Default Card Limit
Retrieve the system-default limits for a card.
Request URI
POST
/issuing/card/query-default-limit
Request Body
Refer to : common
Biz_data :
Name
Type
Description
sub_partner_id*
string
Sub Partner ID
Request Example
{
"app_id": "00000000000000000",
"partner_id": "00000000000000000",
"sub_partner_id": "",
"request_id": "5A1685DD-cfB1-dCc4-63fb-d75bbAd4",
"timestamp": "2025-04-07 13:56:44",
"format": "JSON",
"version": "2.0",
"random_key": "<generated_key>",
"sign_type": "RSA",
"biz_data": {
"sub_partner_id": 1715679487057813
}
}
// The biz_data in this example needs to be encrypted!
Response
Name
Type
Description
daily_transactions*
integer
Daily Transactions Quality
single_amount*
string
Single Amount
daily_amount*
string
Daily Amount
monthly_amount*
string
Monthly Amount
{
"code": "10000",
"msg": "Success",
"total": 1,
"random_key": "<random key used for decryption>",
"sign_type": "RSA",
"app_id": "00000000000000000",
"data": {
"daily_transactions": 1000000,
"single_amount": "2000000.00",
"daily_amount": "3000000.00",
"monthly_amount": "4000000.00"
}
}
// The data in this example has already been decrypted.
Last updated
Was this helpful?