Transaction Limit Exceeds

This template is triggered when the card transaction limit is exceeded.

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 '{
      "name":"Dhruv",
      "customerHashId":"eb61a0a7-978c-4014-80cf-164f08babae7",
      "walletHashId":"4f563cb9-56e1-49a9-b70b-0b893f4643ce",
      "cardHashId":"747b4427-5bab-4deb-bcbb-ad72130adf49",
      "cardNumber":"4001-35xx-xxxx-1950",
      "transactionCurrency":"SGD",
      "transactionAmount":"10.00",
      "transactionDate":"2020-09-29 09:24:46",
      "balanceCurrency":"SGD",
      "walletBalance":"750.86",
      "mcc":"6011",
      "merchantName":"Frankie Tibbs",
      "merchantCountry":"IN",
      "merchantCity":"MUMBAI",
      "authAmount":"10.00",
      "authCode":"TR0808629472",
      "customMessage":"you have exceeded your cards daily amount limit",
      "template":"CARD_TRANSACTION_LIMIT_EXCEEDS_WEBHOOK"
}'

Request body

FieldsDescriptionType
nameThis field contains the name of a client.String
customerHashIdThe unique customer identifier that's generated on customer creation.UUID
walletHashIdThe unique wallet identifier that's generated simultaneously with customer creation.UUID
cardHashIdThe unique card identifier that's generated during new/add-on card issuance.UUID
cardNumberThis is the 16-digit masked card number in the 1234-56xx-xxxx-3456 format.String
transactionCurrencyThis field contains the three-letter ISO-4217 transaction currency code.String
transactionAmountThis field contains the transaction amount.String
transactionDateThis field contains the transaction date and time in the yyyy-MM-dd HH:mm:ss Coordinated Universal Time format.String
balanceCurrencyThis field contains the three-letter ISO-4217 currency code for the wallet balance.String
walletBalanceThe available balance in the wallet.String
mccThe four-digit merchant category code.String
merchantNameThis field contains the merchant name.String
merchantCountryThis field contains the two-letter ISO-2 merchant country code.String
merchantCityThis field contains the merchant city.String
authAmountThis field contains an authorization amount for the transaction.String
authCodeThis field contains the authorization code of the transaction.String
customMessageThis field contains the system-generated message with details of the limit exceeded.String
templateThe value for this field is CARD_TRANSACTION_LIMIT_EXCEEDS_WEBHOOK.String