Client Refund Approval
This template will be triggered when a refund processed to client prefund account.
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 '{
"clientHashId":"0498f10f-1968-494f-9f7a-454ed23942a0",
"transactionCurrency":"SGD",
"transactionAmount":"10",
"authCode":"114733",
"transactionDate":"2022-03-07 13:04:26",
"template":"CARD_REFUND_APPROVAL_WEBHOOK"
}'
Request Body:
Fields | Description | Type |
---|---|---|
clientHashId | Unique client identifier generated and shared before API handshake. | UUID |
transactionCurrency | This field contains the 3-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 (UTC) format. | String |
template | The value for this field is CARD_REFUND_APPROVAL_WEBHOOK. | String |
Updated 20 days ago