Skip to main content

Risk webhooks

This article contains information about webhooks related to Risk product.

Updated over 5 months ago

Webhook for when the risk level of a Person is changed (e.g. from nothing to ‘Low’, or ‘High’ to ‘Medium’) can be configured. Webhook is also sent when risk is manually overridden. More details on this FINAL_RISK_UPDATED webhook can be found in the User Manual here. API documentation here.

{ 
"action": "FINAL_RISK_UPDATED",
"createdTime": "2019-08-24T14:15:22Z",
"metadata": {
"personId": "user-0000007",
"previousLevel": "LOW",
"currentLevel": "HIGH"
}
}

createdTime field shows the time when person’s risk level has been changed/updated.

When initial risk is calculated, metadata field previousLevel is empty.

Did this answer your question?