Update Card Limit
Modify existing card limits by adjusting parameter values.
Request URI
POST
/issuing/card/update-limit
Request Body
Refer to : common
Biz_data :
Name
Type
Description
limit_id*
long
Card Limit ID
card_token*
string(48)
Card Token
daily_transactions*
integer
Daily Transactions Quality
Cannot exceed the query default card limit configuration
single_amount*
string
Single Amount
Cannot exceed the query default card limit configuration
daily_amount*
string
Daily Amount
Cannot exceed the query default card limit configuration
monthly_amount*
string
Monthly Amount
Cannot exceed the query default card limit configuration
total_amount
string
Total Amount.Designed for share card
Request Example
{
"app_id": "00000000000000000",
"partner_id": "00000000000000000",
"sub_partner_id": "",
"request_id": "c5Ac6897-d5bd-5310-DdAc-ec16f9Ab",
"timestamp": "2025-04-07 13:56:48",
"format": "JSON",
"version": "2.0",
"random_key": "<generated_key>",
"sign_type": "RSA",
"biz_data": {
"limit_id": 100848,
"card_token": 450620141926,
"daily_transactions": "10000",
"single_amount": "10000",
"daily_amount": "10000",
"monthly_amount": "10000",
"total_amount": "10000"
}
}
// The biz_data in this example needs to be encrypted!
Response
{
"code": "10000",
"msg": "Success"
}
Last updated
Was this helpful?