Fintecture · Arazzo Workflow

Fintecture Settlement Reconciliation

Version 1.0.0

List settlements, read one settlement's detail, then pull merchant transactions to reconcile.

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

settlement-reconciliation
Enumerate settlements, inspect one, and reconcile against merchant transactions.
Lists settlements, reads the first settlement's detail, and lists merchant transactions over a date range to support reconciliation.
3 steps inputs: accessToken, from, to outputs: merchantTransactions, settlementAmount, settlements
1
listSettlements
List all disbursements from the merchant's Local Acquiring account.
2
getSettlement
Read the first settlement's detail to obtain its amount and covered transactions.
3
listTransactions
List merchant transactions over a date window to reconcile against the settlement.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Fintecture Settlement Reconciliation
  summary: List settlements, read one settlement's detail, then pull merchant transactions to reconcile.
  description: >-
    A back-office reconciliation flow. It lists disbursements from the merchant's
    Local Acquiring account, reads the detail of the first settlement to obtain
    the disbursed amount and the transactions it covers, and then lists merchant
    transactions over a date window so the settlement can be reconciled against
    underlying transactions. 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
sourceDescriptions:
- name: settlementsApi
  url: ../openapi/fintecture-settlements-api-openapi.yml
  type: openapi
- name: transactionsApi
  url: ../openapi/fintecture-transactions-api-openapi.yml
  type: openapi
workflows:
- workflowId: settlement-reconciliation
  summary: Enumerate settlements, inspect one, and reconcile against merchant transactions.
  description: >-
    Lists settlements, reads the first settlement's detail, and lists merchant
    transactions over a date range to support reconciliation.
  inputs:
    type: object
    required:
    - accessToken
    properties:
      accessToken:
        type: string
        description: A bearer access token valid for the PIS and Transactions scopes.
      from:
        type: string
        description: Inclusive start date (YYYY-MM-DD) for the transaction query.
      to:
        type: string
        description: Inclusive end date (YYYY-MM-DD) for the transaction query.
  steps:
  - stepId: listSettlements
    description: List all disbursements from the merchant's Local Acquiring account.
    operationId: getPisV2Settlements
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      settlements: $response.body#/data
      firstSettlementId: $response.body#/data/0/id
  - stepId: getSettlement
    description: Read the first settlement's detail to obtain its amount and covered transactions.
    operationId: getSettlementById
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: settlement_id
      in: path
      value: $steps.listSettlements.outputs.firstSettlementId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      amount: $response.body#/amount
      transactions: $response.body#/transactions
      settledAt: $response.body#/settled_at
  - stepId: listTransactions
    description: List merchant transactions over a date window to reconcile against the settlement.
    operationId: listAllTransactions
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: filter[from]
      in: query
      value: $inputs.from
    - name: filter[to]
      in: query
      value: $inputs.to
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      merchantTransactions: $response.body#/data
  outputs:
    settlements: $steps.listSettlements.outputs.settlements
    settlementAmount: $steps.getSettlement.outputs.amount
    merchantTransactions: $steps.listTransactions.outputs.merchantTransactions

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-settlement-reconciliation-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.