Insufficient Funds Declined
This template will be triggered when the transaction is declined due to insufficient funds.
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 '{
"name":"Dhruv",
"customerHashId":"eb61a0a7-978c-4014-80cf-164f08babae7",
"walletHashId":"4f563cb9-56e1-49a9-b70b-0b893f4643ce",
"cardHashId":"747b4427-5bab-4deb-bcbb-ad72130adf49",
"cardNumber":"4001-35xx-xxxx-9155",
"transactionCurrency":"SGD",
"transactionAmount":"1000000.00",
"transactionDate":"2020-09-29 09:24:46",
"balanceCurrency":"SGD",
"walletBalance":"776.86",
"mcc":"6011",
"merchantName":"Frankie Tibbs",
"merchantCountry":"IN",
"merchantCity":"MUMBAI",
"authAmount":"0.00",
"authCode":"TR0294153505",
"rhaTransactionId":"55648c70-fa9a-4a4d-aaf6-618174c319,
"template":"CARD_INSUFFICIENT_FUNDS_DECLINED_WEBHOOK"
}'
Request Body:
Fields | Description | Type |
---|---|---|
name | This field contains the name of a client. | String |
customerHashId | Unique customer identifier generated on customer creation. | UUID |
walletHashId | Unique wallet identifier generated simultaneously with customer creation. | UUID |
cardHashId | Unique card identifier generated while new/add-on card issuance. | UUID |
cardNumber | This is the 16-digit masked card number in format 1234-56xx-xxxx-3456. | String |
transactionCurrency | This field contains the 3-letter ISO-4217 transaction currency code. | String |
transactionAmount | This field contains the transaction amount. | String |
transactionDate | The transaction date and time in yyyy-MM-dd HH:mm:ss (UTC) format. | String |
balanceCurrency | This field contains the 3-letter ISO-4217 currency code for the wallet balance. | String |
walletBalance | The available balance in the wallet. | String |
mcc | This field contains the four-digit Merchant Category Code. | String |
merchantName | This field contains the merchant name. | String |
merchantCountry | This field contains the 2-letter ISO merchant country code. | String |
merchantCity | This field contains the merchant city. | String |
authAmount | This field contains an authorization amount for the transaction. | String |
authCode | The system-generated, alphanumeric authorization code for the transaction. | String |
rhaTransactionId | This field contains the unique transaction id for RHA clients. This will be empty only for wallet clients. | UUID |
template | The value for this field is CARD_INSUFFICIENT_FUNDS_DECLINED_WEBHOOK. | String |
Updated about 6 hours ago