Wallet Encashment
This template will be triggered in the event of wallet encashment.
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":"0de1e512-e0d7-4eca-ad41-dd39325facc2",
"walletHashId":"696bad93-bda7-4e8d-8c31-318f8d6cbc5f",
"transactionCurrency":"SGD",
"transactionAmount":"10",
"walletBalance":"10",
"authCode":"114733",
"template":"CARD_WALLET_ENCASHMENT_WEBHOOK"
}'
Request Body:
Fields | Description | Type |
---|---|---|
name | This field contains the name of a client. | String |
brandName | The brand name field is 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 |
transactionCurrency | This field contains the 3-letter ISO-4217 transaction currency code. | String |
transactionAmount | This field contains the transaction amount. | String |
walletBalance | The available balance in the wallet. | String |
authCode | An authorization code of the transaction. | String |
template | The value for this field is CARD_WALLET_ENCASHMENT_WEBHOOK. | String |
Updated about 6 hours ago