Viewing screening results
How to view detailed screening results within cases and alerts
When a customer is screened and hits are found, cases and alerts are automatically generated. Risks can then be reviewed within the alerts. Cases, alerts and risks can be reviewed and remediated either via the ComplyAdvantage Mesh web application or by integrating with the API for use in your own case management system.
Viewing cases and alerts in the ComplyAdvantage Mesh web application
- To review cases directly in the web application, follow the steps outlined in this article.
Retrieving alerts using the ComplyAdvantage Mesh API
Retrieving alerts after asynchronous screening
Using webhooks (Recommended)
- Retrieve the
alert_identifierfrom theWORKFLOW_COMPLETEDwebhook payload. - Use the
alert_identifierto fetch detailed risks using the Get Risks Within an Alert API.
Using polling
- Poll the Get Status and Result of Onboarding API using the
workflow_instance_identifier. - Retrieve the
alert_identifierfrom the response. - Use the
alert_identifierto fetch detailed risks using the Get Risks Within an Alert API.
Retrieving alerts after synchronous screening
- If
last_sync_stepis set toALERTINGin the request:- Retrieve the
alerting.identifierdirectly from the Create and Screen (Synchronous) API response. - Use the
alert_identifierto fetch detailed risks using the Get Risks Within an Alert API.
- Retrieve the
- If
last_sync_stepis not set:- Follow the same process outlined in the Asynchronous Screening section above to retrieve and view the alert.
Updated about 15 hours ago