This endpoint can query card transaction fees: 1. Transaction authorization fee 2. FX fee 3. ATM fee
Request
Body Params application/json
{
"cardId": "CIDV015982776547"
}
Request samples
curl --location --request POST 'https://api-test.tevaupay.com/openapi/query/card/getTenantCardFeeList' \
--header 'x-nexus-api-key;' \
--header 'versions;' \
--header 'appId;' \
--header 'timestamp;' \
--header 'nonce;' \
--header 'sign;' \
--header 'Content-Type: application/json' \
--data-raw '{
"cardId": "CIDV015982776547"
}'
Responses
application/json {
"code": 0,
"msg": "SUCCESS",
"data": {
"cardId": "CIDV013293852236",
"cardFeeConfigList": [
{
"chargeItem": 1,
"fixedAmount": "5",
"percentage": "1"
},
{
"chargeItem": 2,
"fixedAmount": "6",
"percentage": "3"
},
{
"chargeItem": 3,
"fixedAmount": "7",
"percentage": "3"
}
]
},
"ok": true
}
Modified at 2025-07-29 03:20:03