Flutterwave · Arazzo Workflow

Flutterwave Direct Orchestrator Transfer And Verify

Version 1.0.0

Initiate a one-call Orchestrator transfer with inline sender and recipient, then verify the payout status.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub PaymentsPayoutsMobile MoneyCardsAfricaFintechRemittanceVirtual AccountsChargebacksMulti-CurrencyArazzoWorkflows

Provider

flutterwave

Workflows

direct-orchestrator-transfer-verify
Initiate an Orchestrator transfer in one call and verify the payout status.
Packages sender, recipient, and movement into a single Orchestrator transfer call, then retrieves the transfer and branches on whether it succeeded or failed.
2 steps inputs: accessToken, amount, currency, meta, narration, recipientId, senderId outputs: transferId, transferStatus
1
initiateTransfer
Initiate the transfer in a single Orchestrator call.
2
verifyTransfer
Retrieve the transfer to confirm its final status.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Flutterwave Direct Orchestrator Transfer And Verify
  summary: Initiate a one-call Orchestrator transfer with inline sender and recipient, then verify the payout status.
  description: >-
    The fastest path to a cross-border payout. The workflow uses the
    Orchestrator transfer helper to combine sender, recipient, and movement
    details in a single request, then retrieves the resulting transfer to
    confirm whether it succeeded, is still processing, or failed. Branching on
    the transfer status lets the caller mark the payout complete or surface a
    failure. 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
sourceDescriptions:
- name: orchestrationApi
  url: ../openapi/flutterwave-orchestration-api-openapi.yml
  type: openapi
- name: transfersApi
  url: ../openapi/flutterwave-transfers-api-openapi.yml
  type: openapi
workflows:
- workflowId: direct-orchestrator-transfer-verify
  summary: Initiate an Orchestrator transfer in one call and verify the payout status.
  description: >-
    Packages sender, recipient, and movement into a single Orchestrator transfer
    call, then retrieves the transfer and branches on whether it succeeded or
    failed.
  inputs:
    type: object
    required:
    - accessToken
    - amount
    - currency
    properties:
      accessToken:
        type: string
        description: OAuth2 client-credentials bearer token for the Authorization header.
      amount:
        type: number
        description: Amount to transfer in the major currency unit.
      currency:
        type: string
        description: ISO currency code for the transfer.
      senderId:
        type: string
        description: Optional existing sender id to attach to the transfer.
      recipientId:
        type: string
        description: Optional existing recipient id to attach to the transfer.
      narration:
        type: string
        description: Optional narration shown on the payout.
      meta:
        type: object
        description: Optional metadata for the transfer.
  steps:
  - stepId: initiateTransfer
    description: Initiate the transfer in a single Orchestrator call.
    operationId: initiateOrchestratorTransfer
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        amount: $inputs.amount
        currency: $inputs.currency
        sender_id: $inputs.senderId
        recipient_id: $inputs.recipientId
        narration: $inputs.narration
        meta: $inputs.meta
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      transferId: $response.body#/id
      initialStatus: $response.body#/status
  - stepId: verifyTransfer
    description: Retrieve the transfer to confirm its final status.
    operationId: getTransfer
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: id
      in: path
      value: $steps.initiateTransfer.outputs.transferId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      transferStatus: $response.body#/status
    onSuccess:
    - name: transferSucceeded
      type: end
      criteria:
      - context: $response.body
        condition: $.status == "succeeded"
        type: jsonpath
    - name: transferFailed
      type: end
      criteria:
      - context: $response.body
        condition: $.status == "failed"
        type: jsonpath
  outputs:
    transferId: $steps.initiateTransfer.outputs.transferId
    transferStatus: $steps.verifyTransfer.outputs.transferStatus

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/flutterwave-direct-orchestrator-transfer-verify-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.