Stripe · Arazzo Workflow

Stripe Verify Identity

Version 1.0.0

Create an Identity VerificationSession, then retrieve it to read the verification outcome.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CommerceFinancial-ServicesFintechPaymentsT1ArazzoWorkflows

Provider

stripe

Workflows

verify-identity
Create an Identity VerificationSession and retrieve its verification outcome.
Creates an Identity VerificationSession of the requested type, then retrieves that same session to read its status and most recent VerificationReport so the verification outcome can be evaluated.
2 steps inputs: metadataOrderId, type outputs: clientSecret, lastVerificationReport, sessionId, status, verificationUrl
1
createVerificationSession
Create an Identity VerificationSession for the requested verification type.
2
retrieveVerificationSession
Retrieve the VerificationSession to read its status and verification outcome.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Stripe Verify Identity
  summary: Create an Identity VerificationSession, then retrieve it to read the verification outcome.
  description: >-
    The canonical Stripe Identity pattern for verifying a user. The workflow
    first creates a VerificationSession for the requested verification type,
    capturing the client secret and hosted verification URL used to collect the
    user's identity documents. It then retrieves the same VerificationSession to
    read back its current status and the ID of the most recent VerificationReport
    once checks have run. Every step spells out its form-encoded request inline so
    the flow can be read and executed without opening the underlying OpenAPI
    description.
  version: 1.0.0
sourceDescriptions:
- name: getApi
  url: ../openapi/stripe-get-api-openapi.yml
  type: openapi
- name: postApi
  url: ../openapi/stripe-post-api-openapi.yml
  type: openapi
workflows:
- workflowId: verify-identity
  summary: Create an Identity VerificationSession and retrieve its verification outcome.
  description: >-
    Creates an Identity VerificationSession of the requested type, then retrieves
    that same session to read its status and most recent VerificationReport so the
    verification outcome can be evaluated.
  inputs:
    type: object
    required:
    - type
    properties:
      type:
        type: string
        description: >-
          The verification check to perform, either document or id_number
          (e.g. document).
      metadataOrderId:
        type: string
        description: >-
          Optional application reference stored in session metadata to correlate
          the verification with your own records (e.g. order_12345).
  steps:
  - stepId: createVerificationSession
    description: >-
      Create an Identity VerificationSession for the requested verification type.
    operationId: postIdentityVerificationSessions
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        type: $inputs.type
        metadata[order_id]: $inputs.metadataOrderId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      sessionId: $response.body#/id
      clientSecret: $response.body#/client_secret
      verificationUrl: $response.body#/url
      status: $response.body#/status
  - stepId: retrieveVerificationSession
    description: >-
      Retrieve the VerificationSession to read its status and verification
      outcome.
    operationId: getIdentityVerificationSessionsSession
    parameters:
    - name: session
      in: path
      value: $steps.createVerificationSession.outputs.sessionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      sessionId: $response.body#/id
      status: $response.body#/status
      lastVerificationReport: $response.body#/last_verification_report
  outputs:
    sessionId: $steps.createVerificationSession.outputs.sessionId
    clientSecret: $steps.createVerificationSession.outputs.clientSecret
    verificationUrl: $steps.createVerificationSession.outputs.verificationUrl
    status: $steps.retrieveVerificationSession.outputs.status
    lastVerificationReport: $steps.retrieveVerificationSession.outputs.lastVerificationReport

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/stripe-verify-identity-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.