3.21 Card transaction limit
Run in Apifox
1.
There is no need to provide any documents for temporary credit increase.
2.
Each card can only undergo a temporary credit increase once every 30 days. Once, the credit limit can be raised to 80,000 US dollars and this will last for 14 days.
Request Body Params application/json
{
"cardId" : "CIDV012313192513" ,
"limitAmount" : 80000 ,
"currency" : "USD" ,
"durationInDays" : 7 ,
"intent" : "INTERNATIONAL_TRAVEL"
} Request Code Samples
curl --location 'https://api-test.tevaupay.com/openapi/card/customPerTransactionLimit' \
--header 'x-nexus-api-key;' \
--header 'versions: v1' \
--header 'appId;' \
--header 'timestamp;' \
--header 'nonce;' \
--header 'sign;' \
--header 'Content-Type: application/json' \
--data '{
"cardId": "CIDV012313192513",
"limitAmount": 80000,
"currency": "USD",
"durationInDays": 7,
"intent": "INTERNATIONAL_TRAVEL"
}' Responses application/json
Generate Code
{
"code" : 0 ,
"msg" : "SUCCESS" ,
"data" : {
"limitAmount" : 1000 ,
"currency" : "USD" ,
"intent" : "INTERNATIONAL_TRAVEL" ,
"activeAt" : "2026-04-24 11:02:44" ,
"expiresAt" : "2026-04-25 11:02:44"
} ,
"ok" : true
}
Modified at 2026-06-01 05:45:18