Fintecture · Arazzo Workflow

Fintecture Customer Verification with Polling

Version 1.0.0

Register a customer, start an AIS identity verification, then poll until it resolves.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Open BankingPaymentsPSD2FranceAccount InformationPayment InitiationInstant PaymentsSEPASmart TransferRequest to PayBuy Now Pay LaterE-MandatesAccount-to-AccountKYCArazzoWorkflows

Provider

fintecture

Workflows

customer-verification-poll
Create a customer, start verification, and poll until verified or failed.
Registers a customer, initiates an identity verification, and polls the verification resource until it reaches a terminal status.
4 steps inputs: accessToken, email, expectedName, firstName, lastName, providerId outputs: customerId, failedStatus, finalStatus, verificationId
1
createCustomer
Register the merchant customer whose identity will be verified.
2
startVerification
Initiate an AIS-based identity verification for the customer against the provider.
3
pollVerification
Poll the verification until it resolves. A verified result ends the workflow; unverified or failed routes to the failure step; pending loops.
4
reportFailure
Terminal failure handling — re-read the verification so the failing status is captured.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Fintecture Customer Verification with Polling
  summary: Register a customer, start an AIS identity verification, then poll until it resolves.
  description: >-
    A customer KYC flow built on the Customers API. It registers a merchant
    customer, initiates an AIS-based identity verification against a provider,
    and polls the verification until it leaves the pending state, branching to
    success on a verified result and to a failure step on unverified or failed.
    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
  x-realizes-capability-ids:
  - BC-1300.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: fintecture-verifications-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: customersApi
  url: ../openapi/fintecture-customers-api-openapi.yml
  type: openapi
- name: verificationsApi
  url: ../openapi/fintecture-verifications-api-openapi.yml
  type: openapi
workflows:
- workflowId: customer-verification-poll
  summary: Create a customer, start verification, and poll until verified or failed.
  description: >-
    Registers a customer, initiates an identity verification, and polls the
    verification resource until it reaches a terminal status.
  inputs:
    type: object
    required:
    - accessToken
    - firstName
    - lastName
    - email
    - providerId
    - expectedName
    properties:
      accessToken:
        type: string
        description: A valid Customers-scoped bearer access token.
      firstName:
        type: string
        description: Customer first name.
      lastName:
        type: string
        description: Customer last name.
      email:
        type: string
        description: Customer email address.
      providerId:
        type: string
        description: Identifier of the bank provider backing the verification.
      expectedName:
        type: string
        description: The name the verification should match against.
  steps:
  - stepId: createCustomer
    description: Register the merchant customer whose identity will be verified.
    operationId: createCustomer
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        first_name: $inputs.firstName
        last_name: $inputs.lastName
        email: $inputs.email
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      customerId: $response.body#/id
  - stepId: startVerification
    description: Initiate an AIS-based identity verification for the customer against the provider.
    operationId: initiateCustomerVerification
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: customer_id
      in: path
      value: $steps.createCustomer.outputs.customerId
    requestBody:
      contentType: application/json
      payload:
        provider_id: $inputs.providerId
        expected_name: $inputs.expectedName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      verificationId: $response.body#/id
      status: $response.body#/status
  - stepId: pollVerification
    description: >-
      Poll the verification until it resolves. A verified result ends the
      workflow; unverified or failed routes to the failure step; pending loops.
    operationId: getCustomerVerificationById
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: customer_id
      in: path
      value: $steps.createCustomer.outputs.customerId
    - name: verification_id
      in: path
      value: $steps.startVerification.outputs.verificationId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
      matchScore: $response.body#/match_score
    onSuccess:
    - name: verified
      type: end
      criteria:
      - context: $response.body
        condition: $.status == "verified"
        type: jsonpath
    - name: notVerified
      type: goto
      stepId: reportFailure
      criteria:
      - context: $response.body
        condition: $.status in ["unverified","failed"]
        type: jsonpath
    - name: pending
      type: goto
      stepId: pollVerification
      criteria:
      - context: $response.body
        condition: $.status == "pending"
        type: jsonpath
  - stepId: reportFailure
    description: Terminal failure handling — re-read the verification so the failing status is captured.
    operationId: getCustomerVerificationById
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: customer_id
      in: path
      value: $steps.createCustomer.outputs.customerId
    - name: verification_id
      in: path
      value: $steps.startVerification.outputs.verificationId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      failedStatus: $response.body#/status
  outputs:
    customerId: $steps.createCustomer.outputs.customerId
    verificationId: $steps.startVerification.outputs.verificationId
    finalStatus: $steps.pollVerification.outputs.status
    failedStatus: $steps.reportFailure.outputs.failedStatus

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/fintecture-customer-verification-poll-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.