Activate Card
This template will be triggered when a physical card is activated.
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 '{
"clientHashId":"0498f10f-1968-494f-9f7a-454ed23942a0",
"customerHashId":"5ccc078b-8cc8-4d49-b231-73030f01b501",
"walletHashId":"e83cca77-8b63-4a25-b580-1d872380ef29",
"cardHashId":"1f5c16eb-57cb-40b7-873f-96ca376f22ce",
"cardNumber":"4001-35xx-xxxx-1950",
"cardActivationStatus":"Active",
"cardActivationDateTime":"2020-09-29 09:24:46",
"template":"CARD_ACTIVATION_CARD_WEBHOOK"
}'
Request Body:
Fields | Description | Type |
---|---|---|
clientHashId | Unique client identifier generated and shared before API handshake. | UUID |
customerHashId | Unique customer identifier generated on customer creation. | UUID |
walletHashId | Unique wallet identifier generated simultaneously with customer creation. | UUID |
cardHashId | Unique card identifier generated while new/add-on card issuance. | UUID |
cardNumber | This field contains the 16-digit masked card number in format 1234-56xx-xxxx-3456. | String |
cardActivationStatus | This field contains the activation status of the card. | String |
cardActivationDateTime | This field contains the card activation date and time in yyyy-MM-dd HH:mm:ss (UTC) format. | String |
template | The value for this field is CARD_ACTIVATION_CARD_WEBHOOK. | String |
Updated about 4 hours ago