This event is triggered for a Visa Token Service (VTS).
https://<customerHost:Port>/webhook
Field | Description |
---|
Content-Type | application/json |
curl --location 'https://<customerHost:Port>/webhook' \
--header 'content-type: application/json' \
--data
'{
"activationCode":"${activationCode}",
"clientHashId":"${clientHashId}",
"customerHashId":"${customerHashId}",
"cardHashId":"${cardHashId}",
"cardNumber":"${cardNumber}",
"walletProvider":"${walletProvider}",
"template":"${template}"
}'
Fields | Description | Type |
---|
activationCode | This is the VTS activation token that's is needed to set up the card. | String |
clientHashId | The unique client identifier that's generated and shared before the API handshake. | UUID |
customerHashId | The unique customer identifier that's generated on customer creation. | UUID |
cardHashId | The unique card identifier that's generated during new/add-on card issuance. | UUID |
cardNumber | This is the 16-digit masked card number in the 1234-56xx-xxxx-3456 format. | String |
walletProvider | Provisioning is available for Apple Pay and Google Pay. Returned values include:applePay googlePay | String |
template | The value for this field is CARD_VTS_TOKEN_WEBHOOK . | String |