This endpoint can query single transaction, daily, monthly, and annual limits.
Request
Body Params application/json
{
"cardId": "CIDV010711440933"
}
Request samples
curl --location --request POST 'https://api-test.tevaupay.com/openapi/query/card/getCardLimitList' \
--header 'x-nexus-api-key;' \
--header 'versions;' \
--header 'appId;' \
--header 'timestamp;' \
--header 'nonce;' \
--header 'sign;' \
--header 'Content-Type: application/json' \
--data-raw '{
"cardId": "CIDV010711440933"
}'
Responses
application/json {
"code": 0,
"msg": "SUCCESS",
"data": [
{
"tradeQuotaAmt": 10000,
"dayQuotaAmt": 10000,
"monthQuotaAmt": 10000,
"yearQuotaAmt": 100000
}
],
"ok": true
}
Modified at 2025-07-29 03:19:46