This template is triggered in the event of wallet encashment.
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",
"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"
}'
Fields | Description | Type |
---|
name | This field contains the name of a client. | String |
brandName | This is the brand name field for the client's company name. | 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 |
transactionCurrency | This field contains the three-letter ISO-4217 transaction currency code. | String |
transactionAmount | This field contains the transaction amount. | String |
walletBalance | The available balance in the wallet. | String |
authCode | The authorization code of the transaction. | String |
template | The value for this field is CARD_WALLET_ENCASHMENT_WEBHOOK . | String |