Wallet Funding

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

https://<customerHost:Port>/webhook

Headers:

FieldDescription
Content-Typeapplication/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_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
customerHashIdUnique customer identifier generated on customer creation.UUID
walletHashIdUnique wallet identifier generated simultaneously with customer creation.UUID
transactionCurrencyThis field contains the 3-letter ISO-4217 transaction currency code.String
transactionAmountThis field contains the transaction amount.String
walletBalanceThe available balance in the wallet.String
authCodeAn authorization code of the transaction.String
templateThe value for this field is CARD_WALLET_FUNDING_WEBHOOK.String