Remit Transaction Expired
This template will be triggered when a remittance transaction is expired.
https://<customerHost:Port>/webhook
Headers:
Field | Description |
---|---|
Content-Type | application/json |
Example Request:
curl --location --request POST 'https://<customerHost:Port>/webhook' \
-H 'content-type: application/json' \
-d '{
"clientHashId":"0498f10f-1968-494f-9f7a-454ed23942a0",
"customerHashId":"0de1e512-e0d7-4eca-ad41-dd39325facc2",
"walletHashId":"e83cca77-8b63-4a25-b580-1d872380ef29",
"transactionCurrency":"INR",
"transactionAmount":"5418.1700",
"systemReferenceNumber":"RT1343085439",
"exchangeRate":"54.454000000",
"beneficiaryName":"Diana Prince",
"beneficiaryAccountNumber":"xxxxxx3443",
"beneficiaryBankName":"DBS Bank",
"billingCurrency":"SGD",
"billingAmount":"100.0000",
"payoutMethod":"CARD",
"template":"REMIT_TRANSACTION_EXPIRED_WEBHOOK"
}'
Request Body:
Fields | Description | Type |
---|---|---|
clientHashId | Unique client identifier generated and shared before API handshake. | UUID |
customerHashId | Unique customer identifier generated on customer creation. | UUID |
walletHashId | Unique wallet identifier generated simultaneously with customer creation. | UUID |
transactionCurrency | This field contains the 3-letter ISO-4217 transaction currency code. | String |
transactionAmount | This is the destination amount in case of remittance. | String |
systemReferenceNumber | This is a unique system reference number generated by card issuance platform for the transaction. | String |
exchangeRate | The exchange rate from the source currency to the destination currency, for example, 1 USD is equivalent to 1.392 SGD. | String |
beneficiaryName | This field contains the name of the beneficiary. | String |
beneficiaryAccountNumber | This field contains the bank account number of the beneficiary. | String |
beneficiaryBankName | This field contains the bank name of the beneficiary. | String |
billingCurrency | This field contains the 3-letter ISO-4217 currency code for the wallet balance | String |
billingAmount | This field contains the source amount in case of remittance. | String |
payoutMethod | This field contains the payout method. The possible values are:\n\n\n\n• LOCAL\n\n\n\n• SWIFT\n\n\n\n• WALLET\n\n\n\n• CARD\n\n\n\n• PROXY | String |
template | The value for this field is REMIT_TRANSACTION_EXPIRED_WEBHOOK. | String |
Updated 4 days ago