Remit Transaction Initiated

This template is triggered when a transfer is created between two customers under the same client using the Transfers 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 '{
      "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",
      "template":"REMIT_TRANSACTION_INITIATED_WEBHOOK",
      "estimatedDeliveryTime": "2023‐08‐24T06:39:51Z"
}'

Request body

FieldsDescriptionType
clientHashIdThe unique client identifier that's generated and shared before the API handshake.UUID
customerHashIdThe unique customer identifier that's generated on 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 in case of a remittance.String
systemReferenceNumberThis is a unique system reference number that's generated by the card issuance platform 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_INITIATED_WEBHOOK.String
estimatedDeliveryTimeThis field contains the estimated delivery time in the 2023‐08‐24T06:39:51Z ISO 8601 format.String