This interface can adjust the card transaction fees:1.
Transaction authorization fee
You can set it after activating the card Request
Body Params application/json
{
"cardId": "CIDV015982776547",
"cardFeeConfigList": [
{
"chargeItem": 1,
"fixedAmount": "1",
"percentage": "1.2"
},
{
"chargeItem": 2,
"fixedAmount": "1",
"percentage": "1.2"
},
{
"chargeItem": 3,
"fixedAmount": "1",
"percentage": "1.2"
}
]
}
Request samples
curl --location --request POST 'https://api-test.tevaupay.com/openapi/card/updateCardFee' \
--header 'x-nexus-api-key;' \
--header 'versions;' \
--header 'appId;' \
--header 'timestamp;' \
--header 'nonce;' \
--header 'sign;' \
--header 'Content-Type: application/json' \
--data-raw '{
"cardId": "CIDV015982776547",
"cardFeeConfigList": [
{
"chargeItem": 1,
"fixedAmount": "1",
"percentage": "1.2"
},
{
"chargeItem": 2,
"fixedAmount": "1",
"percentage": "1.2"
},
{
"chargeItem": 3,
"fixedAmount": "1",
"percentage": "1.2"
}
]
}'
Responses
application/json {
"code": 0,
"msg": "SUCCESS",
"ok": true
}
Modified at 2025-07-29 03:19:57