1.
This interface is for card notification, and there will be notification types of creation, recharge, destruction, freezing, and unfreezing.
2.
EventType enumeration value, card creation callback CardCreate, card recharge callback CardTopup, card destruction callback CardClose, card freeze callback CardFreeze, card unfreeze callback CardUnFreeze,
Card logistics status: CardInProduction, CardShipped, CardActive, CardBind.
3.
After successful reception, confirmation must be returned synchronously, example {"code": "200","msg": "Received successfully"}
Request
Body Params application/json
{
"eventType": "CardClose",
"cardId": "CIDV012566246286",
"orderNo": "CA2507250308114804",
"totalAmount": "1"
}
Request samples
curl --location --request POST 'https://api-test.tevaupay.com' \
--header 'x-nexus-api-key;' \
--header 'versions;' \
--header 'appId;' \
--header 'timestamp;' \
--header 'nonce;' \
--header 'sign;' \
--header 'Content-Type: application/json' \
--data-raw '{
"eventType": "CardClose",
"cardId": "CIDV012566246286",
"orderNo": "CA2507250308114804",
"totalAmount": "1"
}'
Responses
application/json {
"code": "200",
"msg": "Received successfully"
}
Modified at 2025-07-29 02:59:04