Temenos · Arazzo Workflow

Temenos Financial Crime Screen And Risk Score Customer

Version 1.0.0

Screen an onboarding customer against sanctions and compute their KYC risk score.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub BankingCloud BankingCore BankingDigital BankingFinancial-ServicesFintechOpen BankingPaymentsWealth ManagementArazzoWorkflows

Provider

temenos

Workflows

screen-and-risk-score-customer
Sanction-screen a customer and, if clear, compute their risk score.
Screens an onboarding customer, then either computes and reads their risk score when clear or holds for review when a sanctions match is found.
4 steps inputs: address, customerId, dateOfBirth, name, nationality outputs: overallRiskRating, riskScore, screeningId, screeningStatus
1
screenOnboarding
Screen the onboarding customer against sanctions, PEP and adverse media lists, branching on whether the result is clear or a match was found.
2
computeRisk
Compute the customer's KYC risk score now that screening is clear.
3
getRisk
Read the computed risk score back to confirm the assessed rating.
4
holdForReview
Re-read the sanction alerts for the flagged customer so the matches are captured for manual review.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Temenos Financial Crime Screen And Risk Score Customer
  summary: Screen an onboarding customer against sanctions and compute their KYC risk score.
  description: >-
    Onboarding due-diligence flow in Temenos Financial Crime Mitigation. The
    workflow screens a prospective customer against sanctions, PEP and adverse
    media lists, and branches on the screening outcome: a clear result proceeds
    to compute the customer's risk score and read the resulting rating back,
    while a match routes to a hold step that surfaces the screening matches for
    manual review. Every step inlines its request so the chain is
    self-describing.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-1300.20
  - BC-1400.20
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-1300.20
      capability_name: KYC & Customer Due Diligence Management
      spec: temenos-customer-risk-assessment-api-openapi.yml
      confidence: 0.8
    - capability_id: BC-1400.20
      capability_name: Sanctions Screening Management
      spec: temenos-sanction-screening-api-openapi.yml
      confidence: 0.95
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: customerRiskAssessmentApi
  url: ../openapi/temenos-customer-risk-assessment-api-openapi.yml
  type: openapi
- name: sanctionScreeningApi
  url: ../openapi/temenos-sanction-screening-api-openapi.yml
  type: openapi
workflows:
- workflowId: screen-and-risk-score-customer
  summary: Sanction-screen a customer and, if clear, compute their risk score.
  description: >-
    Screens an onboarding customer, then either computes and reads their risk
    score when clear or holds for review when a sanctions match is found.
  inputs:
    type: object
    required:
    - customerId
    - name
    properties:
      customerId:
        type: string
        description: Customer identifier being onboarded.
      name:
        type: string
        description: Full legal name to screen.
      dateOfBirth:
        type: string
        description: Date of birth used to disambiguate screening matches.
      nationality:
        type: string
        description: ISO 3166-1 alpha-2 nationality code.
      address:
        type: string
        description: Customer address used in screening.
  steps:
  - stepId: screenOnboarding
    description: >-
      Screen the onboarding customer against sanctions, PEP and adverse media
      lists, branching on whether the result is clear or a match was found.
    operationId: screenOnboardingCustomer
    requestBody:
      contentType: application/json
      payload:
        customerId: $inputs.customerId
        name: $inputs.name
        dateOfBirth: $inputs.dateOfBirth
        nationality: $inputs.nationality
        address: $inputs.address
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      screeningId: $response.body#/screeningId
      status: $response.body#/status
    onSuccess:
    - name: clear
      type: goto
      stepId: computeRisk
      criteria:
      - context: $response.body
        condition: $.status == "CLEAR"
        type: jsonpath
    - name: flagged
      type: goto
      stepId: holdForReview
      criteria:
      - context: $response.body
        condition: $.status == "MATCH_FOUND" || $.status == "POTENTIAL_MATCH"
        type: jsonpath
  - stepId: computeRisk
    description: >-
      Compute the customer's KYC risk score now that screening is clear.
    operationId: computeCustomerRiskScore
    parameters:
    - name: customerId
      in: path
      value: $inputs.customerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      overallRiskRating: $response.body#/overallRiskRating
      riskScore: $response.body#/riskScore
  - stepId: getRisk
    description: Read the computed risk score back to confirm the assessed rating.
    operationId: getCustomerRiskScore
    parameters:
    - name: customerId
      in: path
      value: $inputs.customerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      overallRiskRating: $response.body#/overallRiskRating
      riskScore: $response.body#/riskScore
      assessmentDate: $response.body#/assessmentDate
    onSuccess:
    - name: done
      type: end
  - stepId: holdForReview
    description: >-
      Re-read the sanction alerts for the flagged customer so the matches are
      captured for manual review.
    operationId: getCustomerSanctionAlerts
    parameters:
    - name: customerId
      in: path
      value: $inputs.customerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      alerts: $response.body#/body
  outputs:
    screeningId: $steps.screenOnboarding.outputs.screeningId
    screeningStatus: $steps.screenOnboarding.outputs.status
    overallRiskRating: $steps.getRisk.outputs.overallRiskRating
    riskScore: $steps.getRisk.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/temenos-screen-and-risk-score-customer-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.