Suspicions
Suspicion types
If at least one of these tags are present, the verification will be marked as SUSPECTED
understanding suspicion status
A SUSPECTED status doesn't mean automatic failure. Always check the document (manualDocument
) and face (manualFace
) statuses too (e.g., for DOC_VALIDATED
, FACE_MATCH
), as they might still be approved.
Handling SUSPECTED status
- If a webhook's overall status is SUSPECTED, check the
fraudTags
andmismatchTags
lists (in the status object) for specific reasons. - Use
fraudTags
andmismatchTags
in combination with document/face validation results to decide whether to onboard the user. - Important: Prepare your system to handle new, unexpected tag values appearing in the future.
Callback Status Example with Suspected Status
{
...
"status": {
"overall": "SUSPECTED",
"mismatchTags": ["UNDER_AGE", "NAME"],
"fraudTags": ["FACE_IN_BLACKLIST", "AML_SUSPECTION"],
"autoDocument": "DOC_VALIDATED",
"autoFace": "FACE_MATCH",
"manualDocument": "DOC_VALIDATED",
"manualFace": "FACE_MATCH",
"additionalSteps": null
...
}