Transaction Not Supported
This template will be triggered when a transaction is not supported.
https://<customerHost:Port>/webhook
Headers:
Field | Description |
---|---|
Content-Type | application/json |
Example Request:
curl --location --request POST 'https://<customerHost:Port>/webhook' \
-H 'content-type: application/json' \
-d '{
"name":"Samar",
"brandName":"ABC Technologies Ltd.",
"customerHashId":"eb61a0a7-978c-4014-80cf-164f08babae7",
"walletHashId":"4f563cb9-56e1-49a9-b70b-0b893f4643ce",
"cardHashId":"747b4427-5bab-4deb-bcbb-ad72130adf49",
"cardNumber":"4001-35xx-xxxx-1950",
"authCode":"114733",
"template":"CARD_TRANSACTION_NOT_SUPPORTED_WEBHOOK"
}'
Request Body:
Fields | Description | Type |
---|---|---|
name | This field contains the name of a client. | String |
brandName | This field contains the brand name for the client's company name. | 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 field contains the 16-digit masked card number in format 1234-56xx-xxxx-3456. | String |
authCode | This field contains an authorization code of the transaction. | String |
template | The value for this field is CARD_TRANSACTION_NOT_SUPPORTED_WEBHOOK. | String |
Updated about 6 hours ago