This template is triggered when a customer is registered.
https://<customerHost:Port>/webhook
Field | Description |
---|
Content-Type | application/json |
curl --location --request POST 'https://<customerHost:Port>/webhook' \
-H 'content-type: application/json' \
-d '{
"clientHashId":"a230207a-c598-479e-b94b-a12bb1a7d287",
"customerHashId":"85c21489-94aa-4e65-ab7e-1c6bcea84e27",
"walletHashId":"fbfdfcda-b823-457b-8901-c1a0950c68aa",
"template":"CARD_CUSTOMER_REGISTRATION_WEBHOOK"
}'
Fields | Description | Type |
---|
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 |
walletHashId | The unique wallet identifier that's generated simultaneously with the customer creation. | UUID |
template | The value for this field is CARD_CUSTOMER_REGISTRATION_WEBHOOK . | String |