Trulioo · Arazzo Workflow

Trulioo Combined Identity Verify And Fraud Risk Decision

Version 1.0.0

Run a KYC identity verification and a Person Fraud risk check on the same person for a layered decision.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Identity VerificationKYCKYBAMLWatchlist ScreeningBiometricsDocument VerificationFraud PreventionComplianceGlobal IdentityArazzoWorkflows

Provider

trulioo

Workflows

identity-and-fraud-risk-decision
Verify identity, then risk-score the same person for a layered decision.
Performs a KYC Verify and a Person Fraud risk check on the same identity, returning the record status alongside the fraud verdict.
2 steps inputs: countryCode, fraudConfigurationName, fraudDataFields, identityConfigurationName, identityDataFields outputs: recordStatus, riskScore, riskVerdict, transactionRecordId
1
verifyIdentity
Run the KYC identity verification for the person and capture the record status.
2
riskCheck
Run the Person Fraud risk check on the same person and capture the verdict and score.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Trulioo Combined Identity Verify And Fraud Risk Decision
  summary: Run a KYC identity verification and a Person Fraud risk check on the same person for a layered decision.
  description: >-
    A robust onboarding decision layers a deterministic identity match with a
    probabilistic fraud verdict. This workflow first verifies the person's
    identity (KYC) and, on a successful submission, runs a Person Fraud risk
    check on the same identity payload, returning both the record status and the
    fraud verdict so the caller can make a combined accept/review/decline
    decision. Every step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: personFraudApi
  url: ../openapi/trulioo-person-fraud-api-openapi.yml
  type: openapi
- name: verificationsApi
  url: ../openapi/trulioo-verifications-api-openapi.yml
  type: openapi
workflows:
- workflowId: identity-and-fraud-risk-decision
  summary: Verify identity, then risk-score the same person for a layered decision.
  description: >-
    Performs a KYC Verify and a Person Fraud risk check on the same identity,
    returning the record status alongside the fraud verdict.
  inputs:
    type: object
    required:
    - identityConfigurationName
    - fraudConfigurationName
    - countryCode
    - identityDataFields
    - fraudDataFields
    properties:
      identityConfigurationName:
        type: string
        description: Configured product name for the identity verification.
      fraudConfigurationName:
        type: string
        description: Configured product name for the Person Fraud check.
      countryCode:
        type: string
        description: Two-letter ISO 3166 country code.
      identityDataFields:
        type: object
        description: DataFields block for the identity Verify.
      fraudDataFields:
        type: object
        description: DataFields block for the Person Fraud check.
  steps:
  - stepId: verifyIdentity
    description: >-
      Run the KYC identity verification for the person and capture the record
      status.
    operationId: verifyPerson
    requestBody:
      contentType: application/json
      payload:
        AcceptTruliooTermsAndConditions: true
        ConfigurationName: $inputs.identityConfigurationName
        CountryCode: $inputs.countryCode
        DataFields: $inputs.identityDataFields
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      transactionRecordId: $response.body#/Record/TransactionRecordID
      recordStatus: $response.body#/Record/RecordStatus
  - stepId: riskCheck
    description: >-
      Run the Person Fraud risk check on the same person and capture the verdict
      and score.
    operationId: personFraudCheck
    requestBody:
      contentType: application/json
      payload:
        AcceptTruliooTermsAndConditions: true
        ConfigurationName: $inputs.fraudConfigurationName
        CountryCode: $inputs.countryCode
        DataFields: $inputs.fraudDataFields
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      riskScore: $response.body#/RiskScore
      riskVerdict: $response.body#/RiskVerdict
      reasons: $response.body#/Reasons
  outputs:
    recordStatus: $steps.verifyIdentity.outputs.recordStatus
    transactionRecordId: $steps.verifyIdentity.outputs.transactionRecordId
    riskVerdict: $steps.riskCheck.outputs.riskVerdict
    riskScore: $steps.riskCheck.outputs.riskScore

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/trulioo-identity-and-fraud-risk-decision-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.