Overview
Query real-time available card limits, including unsettled limits for the current month.
Limit Management
- Query Card Limits
- Query Wallet
cURL -X GET /card-api/v1/load/card/limits
-H 'Content-Type: application/json'
-H 'Authorization: {token}'
cURL -X GET /card-api/v1/payouts/{program_value}/wallets
-H 'Content-Type: application/json'
-H 'Authorization: {token}'
- Responses
{
"code": "200",
"msg": "Success",
"trace_id": "32bad897db8d45dd846e2929d50a3b23",
"data": [
{
"program_value": 01,
"card_limit_list": [
{
"card_limit_currency": "HKD",
"card_limit_amount": 2.00
},
{
"card_limit_currency": "USD",
"card_limit_amount": 201.00
}
]
}
]
}
| Parameter | Description |
|---|---|
| card_limit_list | List of card limits (ARRAY) |
| card_limit_currency | Currency of the card limit |
| card_limit_amount | Amount of the card limit |