This event is triggered when the PIN of a card has been unblocked and can be used in transactions again.
https://<customerHost:Port>/webhook
Field | Description |
---|
Content-Type | application/json |
curl --location 'https://<customerHost:Port>/webhook' \
--header 'content-type: application/json' \
--data '{
"name": "${name}",
"brandName": "${brandName}",
"cardNumber": "${cardNumber}",
"cardHashId": "${cardHashId}",
"customerHashId": "${customerHashId}",
"walletHashId": "${walletHashId}",
"template": "${template}"
}'
Fields | Description | Type |
---|
name | This field contains the name of a client. | String |
brandName | This field contains the brand name of the client's company name. | String |
cardNumber | This is the 16-digit masked card number in the 1234-56xx-xxxx-3456 format. | String |
cardHashId | The unique card identifier that's generated during new/add-on card issuance. | 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 |
template | The value for this field is CARD_PIN_BLOCK_DECLINE_WEBHOOK . | String |