Wallet Funding

This template is triggered when the wallet is funded. Wallets can be funded using the Fund Wallet API.

https://<customerHost:Port>/webhook

Header

FieldDescription
Content-Typeapplication/json

Request example

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":"FW1234567890",
        "template":"CARD_WALLET_FUNDING_WEBHOOK"
}'

Request body

FieldsDescriptionType
nameThis field contains the name of a client.String
brandNameThe brand name field is for the client's company name.String
customerHashIdThe unique customer identifier that's generated on customer creation.UUID
walletHashIdThe unique wallet identifier that's generated simultaneously with the customer creation.UUID
transactionCurrencyThis field contains the three-letter ISO-4217 transaction currency code.String
transactionAmountThis field contains the transaction amount.String
walletBalanceThe available balance in the wallet.String
authCodeThe authorization code of the transaction in the format of FW followed by an integer.String
templateThe value for this field is CARD_WALLET_FUNDING_WEBHOOK.String