Skip to main content

Remit Transaction Rejected

This webhook is triggered when a payout request made via the Transfers API fails. Rejection may occur due to reasons such as incorrect configuration, insufficient wallet balance, or exceeding predefined transaction limits.

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_REJECTED_WEBHOOK",
"reason": "INSUFFICIENT_FUNDS",
"transactionCurrency": "AUD",
"reasonDescription": "Insufficient funds in wallet",
"billingAmount": "100000.00",
"beneficiaryAccountNumber": "xxxxx3852",
"systemReferenceNumber": "RT9834178569",
"externalId": "",
"walletHashId": "d396c4d4-dd23-4cc4-a5c0-d0a1d9f151d2",
"tags": [],
"customerHashId": "1027d7c5-2577-4e1e-b462-c15728fe16e8",
"exchangeRate": "1.567095900",
"billingCurrency": "USD",
"beneficiaryName": "Alvin Roob III",
"beneficiaryBankName": "BANKWEST (A DIVISION OF COMMONWEALTH BANK OF AUSTRALIA)",
"transactionAmount": "156709.59",
"clientHashId": "86528edd-55a3-4a2c-9939-144ed9be43ef"
}'

TO-DO

Request body

FieldDescriptionType
clientHashIdThe unique client identifier that's provided during onboardingUUID
customerHashIdThe unique customer identifier that's generated during customer creation.UUID
reasonCode indicating the reason for transaction rejection. Possible value: INSUFFICIENT_FUNDS.String
reasonDescriptionText description elaborating the reason for rejection.String
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_REJECTED_WEBHOOK.String
externalIdA unique identifier provided by you to track requests or transactions. Refer to externalId field of Transfers API.String