VTS Token
This template will be triggered for VTS Token.
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 '{
"activationCode": "961013",
"clientHashId": "0498f10f-1968-494f-9f7a-454ed23942a0",
"customerHashId": "18f3046c-17e8-4c8b-9fbd-9508305f37b5",
"cardHashId": "23f3052c-1f76-4c8b-9fbd-9504805f37e7",
"cardNumber": "4001-35xx-xxxx-1950",
"walletProvider": "googlePay",
"template": "CARD_VTS_TOKEN_WEBHOOK"
}'
Request Body:
Fields | Description | Type |
---|---|---|
activationCode | This is the VTS activation token that is needed to setup the card. | String |
clientHashId | Unique client identifier generated and shared before API handshake. | UUID |
customerHashId | Unique customer identifier generated on 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 |
walletProvider | The provisioning is possible for GooglePay and ApplePay. This can take two values accordingly:\n\n\n\n- applePay\n- googlePay | String |
template | The value for this field is CARD_VTS_TOKEN_WEBHOOK. | String |
Updated about 7 hours ago