Create Card Limit

Set single, daily, or monthly limits during application or post-issuance. Shared cards support additional overall limits.

Request URI

POST /issuing/card/create-limit

Request Body

Refer to : common

Biz_data :

Name
Type
Description

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

Default currency: USD

Request Example

{
    "app_id": "00000000000000000",
    "partner_id": "00000000000000000",
    "sub_partner_id": "",
    "request_id": "b1c8bCBE-5471-f646-2057-9c0F0eFe",
    "timestamp": "2025-04-07 13:56:46",
    "format": "JSON",
    "version": "2.0",
    "random_key": "<generated_key>",
    "sign_type": "RSA",
    "biz_data": {
        "card_token": 450620141926,
        "daily_transactions": "99999",
        "single_amount": "99999",
        "daily_amount": "99999",
        "monthly_amount": "99999",
        "total_amount": "99999"
    }
}
// The biz_data in this example needs to be encrypted!

Response

Name
Type
Description

limit_id

long

Card Limit ID

card_token

string

Card Token

transaction_type

integer

Transaction type.Refer to: transactionType

currency

string

Currency.Refer to: currency

{
    "code": "10000",
    "msg": "Success",
    "total": 1,
    "random_key": "<random key used for decryption>",
    "sign_type": "RSA",
    "app_id": "00000000000000000",
    "data": {
        "limit_id": 100848,
        "transaction_type": 151,
        "currency": "USD",
        "card_token": "450620141926"
    }
}
// The data in this example has already been decrypted.

Last updated

Was this helpful?