Fintecture · Arazzo Workflow

Fintecture Sandbox Test Payment

Version 1.0.0

Pick a sandbox test account, open a payment session against its bank, then poll for completion.

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

sandbox-test-payment
Select a sandbox test account, create a payment, and poll to a terminal status.
Reads sandbox test accounts, creates an Immediate Transfer payment session, and polls the payment until completed or failed.
4 steps inputs: accessToken, amount, communication, currency, requestId outputs: failedStatus, finalStatus, sessionId
1
listTestAccounts
Retrieve the sandbox test accounts to obtain a known IBAN and its provider.
2
createPayment
Create an Immediate Transfer payment session using the sandbox test account holder.
3
pollPayment
Poll the payment until it reaches a terminal state. Completed ends the workflow; rejected, cancelled, or failed routes to the failure step; otherwise loops.
4
reportFailure
Terminal failure handling — re-read the payment so the failing status is captured.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Fintecture Sandbox Test Payment
  summary: Pick a sandbox test account, open a payment session against its bank, then poll for completion.
  description: >-
    A sandbox end-to-end test flow. It retrieves the sandbox test accounts to
    pick a known IBAN and its provider, creates an Immediate Transfer payment
    session, and polls the payment until it reaches a terminal state, branching to
    success on payment_completed and to a failure step otherwise. Every step
    spells out its request inline so the flow can be read and executed without
    opening the underlying OpenAPI descriptions.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-1340.10
  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-1340.10
      capability_name: Payment Initiation Management
      spec: fintecture-payments-api-openapi.yml
      confidence: 0.92
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: paymentsApi
  url: ../openapi/fintecture-payments-api-openapi.yml
  type: openapi
- name: testAccountsApi
  url: ../openapi/fintecture-test-accounts-api-openapi.yml
  type: openapi
workflows:
- workflowId: sandbox-test-payment
  summary: Select a sandbox test account, create a payment, and poll to a terminal status.
  description: >-
    Reads sandbox test accounts, creates an Immediate Transfer payment session,
    and polls the payment until completed or failed.
  inputs:
    type: object
    required:
    - accessToken
    - amount
    - currency
    - communication
    - requestId
    properties:
      accessToken:
        type: string
        description: A valid PIS-scoped bearer access token (sandbox).
      amount:
        type: string
        description: Payment amount as a string.
      currency:
        type: string
        description: ISO currency code (EUR, GBP, or PLN).
      communication:
        type: string
        description: Free-form remittance information for the payment.
      requestId:
        type: string
        description: Unique request identifier (UUID v4) for the payment create call.
  steps:
  - stepId: listTestAccounts
    description: Retrieve the sandbox test accounts to obtain a known IBAN and its provider.
    operationId: getResV1TestAccounts
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      testAccounts: $response.body#/data
      firstIban: $response.body#/data/0/iban
      firstHolder: $response.body#/data/0/holder_name
  - stepId: createPayment
    description: Create an Immediate Transfer payment session using the sandbox test account holder.
    operationId: createPisV2Connect
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: x-request-id
      in: header
      value: $inputs.requestId
    requestBody:
      contentType: application/json
      payload:
        meta:
          psu_name: $steps.listTestAccounts.outputs.firstHolder
        data:
          type: PIS
          attributes:
            amount: $inputs.amount
            currency: $inputs.currency
            communication: $inputs.communication
            payment_method: immediate_transfer
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      sessionId: $response.body#/meta/session_id
      connectUrl: $response.body#/meta/url
  - stepId: pollPayment
    description: >-
      Poll the payment until it reaches a terminal state. Completed ends the
      workflow; rejected, cancelled, or failed routes to the failure step;
      otherwise loops.
    operationId: getPaymentSession
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: payment_id
      in: path
      value: $steps.createPayment.outputs.sessionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
    onSuccess:
    - name: completed
      type: end
      criteria:
      - context: $response.body
        condition: $.status == "payment_completed"
        type: jsonpath
    - name: failed
      type: goto
      stepId: reportFailure
      criteria:
      - context: $response.body
        condition: $.status in ["payment_rejected","payment_cancelled","payment_failed"]
        type: jsonpath
    - name: pending
      type: goto
      stepId: pollPayment
      criteria:
      - context: $response.body
        condition: $.status in ["payment_created","payment_pending","payment_initiated"]
        type: jsonpath
  - stepId: reportFailure
    description: Terminal failure handling — re-read the payment so the failing status is captured.
    operationId: getPaymentSession
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: payment_id
      in: path
      value: $steps.createPayment.outputs.sessionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      failedStatus: $response.body#/status
  outputs:
    sessionId: $steps.createPayment.outputs.sessionId
    finalStatus: $steps.pollPayment.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-sandbox-test-payment-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.