Skip to main content

Remit Transaction Awaiting Funds

This webhook is triggered when a payout request is made, but the wallet associated with the specified walletHashId does not have sufficient balance. The webhook is sent as part of the Transfers API flow.

https://<customerHost:Port>/webhook
FieldDescription
Content-Typeapplication/json

Request example

curl --location --request POST 'https://<customerHost:Port>/webhook' \
-H 'content-type: application/json' \
-d '{
"template": "REMIT_TRANSACTION_AWAITING_FUNDS_WEBHOOK",
"transactionCurrency": "USD",
"billingAmount": "100000.00",
"beneficiaryAccountNumber": "xxxxx3852",
"systemReferenceNumber": "RT0295689319",
"externalId": "",
"walletHashId": "d396c4d4-dd23-4cc4-a5c0-d0a1d9f151d2",
"tags": [],
"customerHashId": "1027d7c5-2577-4e1e-b462-c15728fe16e8",
"exchangeRate": "1.000000000",
"billingCurrency": "USD",
"beneficiaryName": "Donna Hickle",
"beneficiaryBankName": "Bank of America, National Association",
"transactionAmount": "100000.00",
"clientHashId": "86528edd-55a3-4a2c-9939-144ed9be43ef"
}'

Request body

FieldDescriptionType
clientHashIdThe unique client identifier that's provided during onboardingUUID
customerHashIdThe unique customer identifier that's generated during customer creation.UUID
walletHashIdThe unique wallet identifier that's generated simultaneously with customer creation.UUID
transactionCurrencyThis field contains the three-letter ISO-4217 transaction currency code.String
transactionAmountThis is the destination amount that the beneficiary receives.String
systemReferenceNumberThis is a unique system reference number that's generated by the system for the transaction.String
exchangeRateThe exchange rate from the source currency to the destination currency, for example, 1 USD is equivalent to 1.392 SGD.String
beneficiaryNameThis field contains the name of the beneficiary.String
beneficiaryAccountNumberThis field contains the bank account number of the beneficiary.String
beneficiaryBankNameThis field contains the bank name of the beneficiary.String
billingCurrencyThis field contains the three-letter ISO-4217 currency code.String
billingAmountThis field contains the source amount in case of remittance.String
templateThe value for this field is REMIT_TRANSACTION_AWAITING_FUNDS_WEBHOOK.String
externalIdA unique identifier provided by you to track requests or transactions. Refer to externalId field of Transfers API.String