Query Remaining Card Limit

View available spending capacity within current limits.

Request URI

POST /issuing/card/query-remaining-limit

Request Body

Refer to : common

Biz_data :

Name
Type
Description

card_token*

string

Card Token

stat_date

string

Stat Date

Request Example

{
    "app_id": "00000000000000000",
    "partner_id": "00000000000000000",
    "sub_partner_id": "",
    "request_id": "bAb7C36d-BF9f-E3cF-B24E-6EF1Dfb1",
    "timestamp": "2025-04-07 13:56:49",
    "format": "JSON",
    "version": "2.0",
    "random_key": "<generated_key>",
    "sign_type": "RSA",
    "biz_data": {
        "card_token": 450620141926
    }
}
// The biz_data in this example needs to be encrypted!

Response

Name
Type
Description

card_token

string

Card Token

account_num

string

Account Number

daily_used_transactions

integer

Daily Used Transactions

daily_used_amount

string

Daily Used Amount

monthly_used_amount

string

Monthly Used Amount

total_used_amount

string

Total Used Amount

daily_remaining_transactions

integer

Daily Remaining Transactions

daily_remaining_amount

string

Daily Remaining Amount

monthly_remaining_amount

string

Monthly Remaining Amount

total_remaining_limit

string

Total Remaining Amount

{
    "code": "10000",
    "msg": "Success",
    "total": 1,
    "random_key": "<random key used for decryption>",
    "sign_type": "RSA",
    "app_id": "00000000000000000",
    "data": {
        "card_token": "450620141926",
        "account_num": "658704******3982",
        "daily_used_transactions": 1,
        "daily_used_amount": "5.01",
        "monthly_used_amount": "25.05",
        "total_used_amount": null,
        "daily_remaining_transactions": 9999,
        "daily_remaining_amount": "9994.99",
        "monthly_remaining_amount": "9974.95",
        "total_remaining_limit": null
    }
}
// The data in this example has already been decrypted.

Last updated

Was this helpful?