This template is triggered when a refund is processed to a client prefund account.
https://<customerHost:Port>/webhook
Field | Description |
---|
Content-Type | application/json |
curl --location --request POST 'https://<customerHost:Port>/webhook' \
-H 'content-type: application/json' \
-d '{
"clientHashId":"0498f10f-1968-494f-9f7a-454ed23942a0",
"transactionCurrency":"SGD",
"transactionAmount":"10",
"authCode":"114733",
"transactionDate":"2022-03-07 13:04:26",
"template":"CARD_REFUND_APPROVAL_WEBHOOK"
}'
Fields | Description | Type |
---|
clientHashId | The unique client identifier generated and shared before the API handshake. | UUID |
transactionCurrency | This field contains the three-letter ISO-4217 transaction currency code. | String |
transactionAmount | This field contains the transaction amount. | String |
authCode | An authorization code of the transaction. | String |
transactionDate | This field contains the transaction date and time in yyyy-MM-dd HH:mm:ss Coordinated Universal Time format. | String |
template | The value for this field is CARD_REFUND_APPROVAL_WEBHOOK . | String |