This template is triggered when the card has the wrong CVV2.
https://<customerHost:Port>/webhook
Field | Description |
---|
Content-Type | application/json |
curl --location --request POST 'https://<customerHost:Port>/webhook' \
-H 'content-type: application/json' \
-d '{
"name": "Samar",
"transactionCurrency": "SGD",
"transactionAmount": "40.00",
"cardNumber": "4931-93xx-xxxx-8776",
"cardHashId": "eceb4de1-7601-4912-8129-eaa03d88bfb3",
"customerHashId": "09dca87a-578e-4d2f-829c-3b6dd9256ece",
"walletHashId": "84e50dbe-f5fb-4931-9175-2a136589fb89",
"mcc": "5022",
"merchantName": "Frankie Tibbs",
"merchantCountry": "IN",
"merchantCity": "MUMBAI",
"template": "CARD_WRONG_CVV2_WEBHOOK"
}'
Fields | Description | Type |
---|
name | This field contains the name of a client. | String |
transactionCurrency | This field contains the three-letter ISO-4217 transaction currency code. | String |
transactionAmount | This field contains the transaction amount. | String |
cardNumber | This is the 16-digit masked card number in the 1234-56xx-xxxx-3456 format. | String |
cardHashId | The unique card identifier that's generated while new/add-on card issuance. | UUID |
customerHashId | The unique customer identifier that's generated on customer creation. | UUID |
walletHashId | Unique wallet identifier generated simultaneously with customer creation. | UUID |
mcc | This field contains the four-digit merchant category code. | String |
merchantName | This field contains the merchant name. | String |
merchantCountry | This field contains the two-letter ISO-2 country code for the merchant country. | String |
merchantCity | This field contains the merchant city. | String |
template | The value for this field is CARD_WRONG_CVV2_WEBHOOK . | String |