This template is triggered when a settlement reversal received via a settlement file is processed.
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",
"customerHashId":"5eb886da-0baa-4dca-bc02-bc66a4a2a09b"
"walletHashId":"1e838976-86db-4666-a271-cb8ddf6d23e8",
"cardHashId":"92f1a8da-6951-44d3-8e39-b4b77103c92f",
"cardNumber":"4611-35xx-xxxx-8799",
"transactionCurrency":"SGD",
"transactionAmount":"11",
"transactionDate":"2021-04-28 11:56:12",
"merchantName":"Starbucks Coffee BRISBANE AU",
"balanceCurrency":"SGD",
"walletBalance":"982.99",
"authCode":"062306SR",
"template":"CARD_SETTLEMENT_REVERSAL_WEBHOOK"
}'
Fields | Description | Type |
---|
name | This field contains the name of a client. | String |
customerHashId | The unique customer identifier that's generated on customer creation. | UUID |
walletHashId | The unique wallet identifier that's generated simultaneously with customer creation. | UUID |
cardHashId | The unique card identifier that's generated during new/add-on card issuance. | UUID |
cardNumber | This is the 16-digit masked card number in the format 1234-56xx-xxxx-3456 format. | String |
transactionCurrency | This field contains the three-letter ISO-4217 transaction currency code. | String |
transactionAmount | This field contains the transaction amount. | String |
transactionDate | This field contains the transaction date and time in the yyyy-MM-dd HH:mm:ss Coordinated Universal Time format. | String |
merchantName | This field contains the merchant name. | String |
balanceCurrency | This field contains the three-letter ISO-4217 currency code for the wallet balance. | String |
walletBalance | This field contains the available balance in the wallet. | String |
authCode | This field contains the unique system-generated alphanumeric authorization code for the transaction. | String |
template | The value for this field is CARD_SETTLEMENT_REVERSAL_WEBHOOK . | String |