Virtual Account Assignment Failure
This template will be triggered when a virtual account assignment failed.
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": "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"
}'
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 |
currencyCode | This field contains the 3-letter ISO-4217 currency code. | String |
bankName | This field contains name of the bank for the virtual account. | String |
customMessage | This field contains virtual account creation error message. | String |
template | The value for this field is VIRTUAL_ACCOUNT_ASSIGNMENT_FAILED_WEBHOOK . | String |
Updated 4 days ago