Inactive Decline
This template will be triggered when the transaction is declined due to an inactive card.
https://<customerHost:Port>/webhook
Example Request:
curl --location --request POST 'https://<customerHost:Port>/webhook' \
-H 'content-type: application/json' \
-d '{
"name":"Samar",
"customerHashId":"0de1e512-e0d7-4eca-ad41-dd39325facc2",
"walletHashId":"696bad93-bda7-4e8d-8c31-318f8d6cbc5f",
"cardHashId":"48534c3a-908c-4bbd-baf2-161402a2c5e0",
"cardNumber":"4001-35xx-xxxx-1950",
"transactionCurrency":"SGD",
"transactionAmount":"40.00",
"merchantName":"Frankie Tibbs",
"template":"CARD_INACTIVE_CARD_DECLINE_WEBHOOK"
}'
Request Body:
Fields | Description | Type |
---|---|---|
name | This field contains the name of a client. | String |
customerHashId | Unique customer identifier generated on customer creation. | UUID |
walletHashId | Unique wallet identifier generated simultaneously with customer creation. | UUID |
cardHashId | Unique card identifier generated while new/add-on card issuance. | UUID |
cardNumber | This is the 16-digit masked card number in format 1234-56xx-xxxx-3456. | String |
transactionCurrency | This field contains the 3-letter ISO-4217 transaction currency code. | String |
transactionAmount | This field contains the transaction amount. | String |
merchantName | This field contains the merchant name. | String |
template | The value for this field is CARD_INACTIVE_CARD_DECLINE_WEBHOOK. | String |
Updated about 5 hours ago