This template is triggered when an individual customer's compliance status is changed.
Header
Field | Description |
---|---|
Content-Type | application/json |
Request example
curl --location --request POST 'https://<customerHost:Port>/webhook' \
-H 'content-type: application/json' \
-d '{
"clientHashId": "b1cb53e3-6a1b-4b58-a10d-5a79c5967cef",
"customerHashId":"85c21489-94aa-4e65-ab7e-1c6bcea84e27",
"complianceStatus":"COMPLETED",
"status":"Clear",
"customerType":"INDIVIDUAL",
"template":"CUSTOMER_COMPLIANCE_STATUS"
}'
Request body
Fields | Description | Type |
---|---|---|
clientHashId | This is the clientHashId of the parent client. | UUID |
customerHashId | This field contains the unique customer identifier generated at the time of customer creation. | UUID |
complianceStatus | This field contains the compliance status of the customer. | String |
status | This field contains the status of the customer. The possible values are: • Pending • Clear • Failed | String |
customerType | This field contains the type of the customer. It should be INDIVIDUAL for individual customer. | String |
template | The value for this field is CUSTOMER_COMPLIANCE_STATUS | String |