This template is triggered when a virtual account assignment fails.
https://<customerHost:Port>/webhook
Field | Description |
---|
Content-Type | application/json |
curl --location --request POST 'https://<customerHost:Port>/webhook' \
-H 'content-type: application/json' \
-d '{
"clientHashId": "845f4c18-546a-4e14-b8d4-fc26179e56da",
"customerHashId": "0de1e512-e0d7-4eca-ad41-dd39325facc2",
"walletHashId": "e83cca77-8b63-4a25-b580-1d872380ef29",
"currencyCode": "INR",
"bankName": "DBS HONGKONG",
"customMessage": "Account creation failed",
"template":"VIRTUAL_ACCOUNT_ASSIGNMENT_FAILED_WEBHOOK"
}'
Fields | Description | Type |
---|
clientHashId | The unique client identifier that's generated and shared before API handshake. | UUID |
customerHashId | The unique customer identifier that's generated on customer creation. | UUID |
walletHashId | The unique wallet identifier that's generated simultaneously with customer creation. | UUID |
currencyCode | This field contains the three-letter ISO-4217 currency code. | String |
bankName | This field contains the name of the bank for the virtual account. | String |
customMessage | This field contains a virtual account creation error message. | String |
template | The value for this field is VIRTUAL_ACCOUNT_ASSIGNMENT_FAILED_WEBHOOK . | String |