Handle Results
After creating an evaluation, use the response to determine how your application should route the user and continue the verification flow.
How to interpret the response
Your integration should not rely on a single field. Always evaluate decision + status + tags together when determining next steps.
decision→ High-level outcome (ACCEPT,REJECT,REVIEW)status→ Whether the evaluation is complete (CLOSED,ON_HOLD)tags→ Why the decision was made (used for routing + UX)
For the full response schema, see the Evaluation API Reference.
Evaluation flow (how decisions are made)
RiskOS™ evaluates signals in stages:
-
Digital Intelligence (device risk)
High-risk signals (for example, bots, emulators, or risky networks) may result in an immediateREJECT. -
Identity verification (KYC)
Validates identity attributes (name, DOB, SSN, address). -
Fraud & risk signals
Additional enrichment models evaluate fraud, synthetic identity, and watchlist risk.
If no blocking risks are found, the evaluation completes. Otherwise, it may:
- Reject immediately, or
- Pause for step-up verification (for example, Document Verification)
Decision outcomes
| Decision | Status | Meaning | Action |
|---|---|---|---|
ACCEPT | CLOSED | Passed all checks | Continue onboarding |
REJECT | CLOSED | Failed a critical check | Stop or route to fallback |
REVIEW | ON_HOLD | Additional verification required | Trigger step-up (e.g., DocV) |
Outcome handling
ACCEPT
ACCEPTThe user passed all checks.
{
"decision": "ACCEPT",
"status": "CLOSED",
"sub_status": "Accept",
"tags": []
}What to do:
- Continue onboarding.
- Grant access or create the account.
REVIEW
REVIEWThe evaluation is paused pending additional verification.
Key signals:
decision: "REVIEW"status: "ON_HOLD"eval_status: "evaluation_paused"
{
"decision": "REVIEW",
"status": "ON_HOLD",
"eval_status": "evaluation_paused",
"tags": [
"Email Risk Step Up",
"Phone Risk Step Up",
"Document Verification Triggered"
]
}What to do:
- Trigger step-up verification (for example, Document Verification).
- Use
data_enrichmentsto retrieve the DocV URL or token. - Resume the flow after the user completes the additional verification.
See Handle additional verification for more information.
Common REVIEW tags
These indicate why step-up was triggered:
-
Identity mismatch:
DOB Does Not Match Step Up,SSN Verification Step Up,First or Last Name Does Not Match Step Up,First and Last Name Possibly Reversed Step Up -
Data risk:
Email Risk Step Up,Phone Risk Step Up,Address Risk Step Up,Input Address State or Zip Does Not Match Address On File Step Up -
Fraud signals:
Sigma Synthetic Step Up,Sigma Identity Fraud Step Up,Graph Intel Step Up -
Other:
Digital Intel Step Up,Watchlist Review
Note:
REVIEWis not a terminal outcome. It indicates the evaluation is paused and requires additional verification before a final decision is returned.
REJECT
REJECTThe user failed a critical check.
{
"decision": "REJECT",
"status": "CLOSED",
"sub_status": "Reject",
"tags": [
"Sigma Identity Fraud Reject"
]
}What to do:
- Stop onboarding.
- Route to a fallback, manual review, or decline flow.
Common REJECT tags
High Risk IndividualSigma Identity Fraud RejectVerify RejectSSN Does Not Match - RejectAddress is Invalid or Commercial or PO box or Prison - RejectWatchlist Review
Note:
Watchlist Reviewmay appear in either aREVIEWorREJECTresponse depending on how the workflow resolves.
Route the user
Use decision as the primary routing field, then use status and tags to refine the user experience.
ACCEPT→ Continue onboardingREJECT→ Route to fallback or decline flowREVIEW→ Handle additional verification
switch (data.decision) {
case "ACCEPT":
router.push("/success");
break;
case "REJECT":
router.push("/review");
break;
case "REVIEW":
router.push("/additional-verification");
break;
}Updated about 13 hours ago
