Stripe · Arazzo Workflow

Stripe Link Financial Account

Version 1.0.0

Create a Financial Connections session for an account holder, then list the accounts linked through it.

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

Provider

stripe

Workflows

link-financial-account
Create a Financial Connections session and list the accounts linked through it.
Creates a Financial Connections Session bound to an account holder and the requested data permissions, then lists the Financial Connections Account objects that were collected as part of that session.
2 steps inputs: accountHolderType, customer, permissions outputs: accounts, clientSecret, sessionId
1
createSession
Create the Financial Connections Session that launches the authorization flow for the account holder.
2
listLinkedAccounts
List the Financial Connections Account objects that were collected as part of the created session.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Stripe Link Financial Account
  summary: Create a Financial Connections session for an account holder, then list the accounts linked through it.
  description: >-
    The canonical Stripe Financial Connections linking pattern. The workflow
    first creates a Financial Connections Session for a given account holder,
    requesting the desired data permissions, which yields the client_secret used
    to launch the authorization flow in Stripe.js. Once the holder links their
    financial accounts, the workflow lists the Account objects collected as part
    of that session. 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: accountsApi
  url: ../openapi/stripe-accounts-api-openapi.yml
  type: openapi
- name: connectionsApi
  url: ../openapi/stripe-connections-api-openapi.yml
  type: openapi
workflows:
- workflowId: link-financial-account
  summary: Create a Financial Connections session and list the accounts linked through it.
  description: >-
    Creates a Financial Connections Session bound to an account holder and the
    requested data permissions, then lists the Financial Connections Account
    objects that were collected as part of that session.
  inputs:
    type: object
    required:
    - accountHolderType
    - customer
    - permissions
    properties:
      accountHolderType:
        type: string
        description: The type of account holder to link accounts for (e.g. customer).
      customer:
        type: string
        description: >-
          ID of the Customer to link accounts for when accountHolderType is
          customer (e.g. cus_00000000000000).
      permissions:
        type: array
        description: >-
          Data features to request access to. Possible values are balances,
          transactions, ownership, and payment_method (e.g. balances).
        items:
          type: string
  steps:
  - stepId: createSession
    description: >-
      Create the Financial Connections Session that launches the authorization
      flow for the account holder.
    operationId: postFinancialConnectionsSessions
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        account_holder:
          type: $inputs.accountHolderType
          customer: $inputs.customer
        permissions: $inputs.permissions
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      sessionId: $response.body#/id
      clientSecret: $response.body#/client_secret
  - stepId: listLinkedAccounts
    description: >-
      List the Financial Connections Account objects that were collected as part
      of the created session.
    operationId: getFinancialConnectionsAccounts
    parameters:
    - name: session
      in: query
      value: $steps.createSession.outputs.sessionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      accounts: $response.body#/data
      hasMore: $response.body#/has_more
  outputs:
    sessionId: $steps.createSession.outputs.sessionId
    clientSecret: $steps.createSession.outputs.clientSecret
    accounts: $steps.listLinkedAccounts.outputs.accounts

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-link-financial-account-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.