This template is triggered when an ADD_ON
card is issued using the Add Card API.
https://<customerHost:Port>/webhook
Field | Description |
---|
Content-Type | application/json |
curl --location 'https://<customerHost:Port>/webhook' \
--header 'content-type: application/json' \
--data '{
"clientHashId":"0de1e512-e0d7-4eca-ad41-dd39325facc2",
"customerHashId":"0de1e512-e0d7-4eca-ad41-dd39325facc2",
"cardHashId":"0de1e512-e0d7-4eca-ad41-dd39325facc2",
"cardNumber":"4001-35xx-xxxx-1950",
"walletHashId":"0de1e512-e0d7-4eca-ad41-dd39325facc2",
"template": "CARD_ADD_CARD_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 |
cardHashId | The unique card identifier that's generated while new/add-on card issuance. | UUID |
cardNumber | This is the 16-digit masked card number in the 1234-56xx-xxxx-3456 format. | String |
template | The value for this field is CARD_ADD_CARD_WEBHOOK . | String |