Flutterwave · Arazzo Workflow

Flutterwave Transfer Verify And Retry

Version 1.0.0

Send a transfer, verify its status, and retry it automatically when it failed.

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

Provider

flutterwave

Workflows

transfer-verify-and-retry
Initiate a transfer, verify it, and retry automatically on failure.
Creates a transfer to an existing recipient, retrieves it, and branches to a retry step when the transfer failed or ends when it succeeded.
3 steps inputs: accessToken, amount, currency, narration, recipientId outputs: retryStatus, transferId, transferStatus
1
createTransfer
createTransfer
Initiate a transfer to the existing recipient.
2
verifyTransfer
getTransfer
Retrieve the transfer and decide whether a retry is required.
3
retryTransfer
retryTransfer
Retry the failed transfer to re-attempt the payout.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Flutterwave Transfer Verify And Retry
  summary: Send a transfer, verify its status, and retry it automatically when it failed.
  description: >-
    A resilient payout flow that initiates a transfer to an existing recipient,
    retrieves the transfer to inspect its status, and branches: when the
    transfer failed it calls the retry endpoint to re-attempt the payout, and
    when the transfer succeeded it ends. This mirrors how an operations team
    recovers from a transient payout failure without recreating the recipient.
    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: transfersApi
  url: ../openapi/flutterwave-transfers-api-openapi.yml
  type: openapi
workflows:
- workflowId: transfer-verify-and-retry
  summary: Initiate a transfer, verify it, and retry automatically on failure.
  description: >-
    Creates a transfer to an existing recipient, retrieves it, and branches to a
    retry step when the transfer failed or ends when it succeeded.
  inputs:
    type: object
    required:
    - accessToken
    - recipientId
    - amount
    - currency
    properties:
      accessToken:
        type: string
        description: OAuth2 client-credentials bearer token for the Authorization header.
      recipientId:
        type: string
        description: Identifier of an existing recipient to pay out to.
      amount:
        type: number
        description: Amount to transfer in the major currency unit.
      currency:
        type: string
        description: ISO currency code for the transfer.
      narration:
        type: string
        description: Optional narration shown on the payout.
  steps:
  - stepId: createTransfer
    description: Initiate a transfer to the existing recipient.
    operationId: createTransfer
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        amount: $inputs.amount
        currency: $inputs.currency
        recipient_id: $inputs.recipientId
        narration: $inputs.narration
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      transferId: $response.body#/id
  - stepId: verifyTransfer
    description: Retrieve the transfer and decide whether a retry is required.
    operationId: getTransfer
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: id
      in: path
      value: $steps.createTransfer.outputs.transferId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      transferStatus: $response.body#/status
    onSuccess:
    - name: needsRetry
      type: goto
      stepId: retryTransfer
      criteria:
      - context: $response.body
        condition: $.status == "failed"
        type: jsonpath
    - name: succeeded
      type: end
      criteria:
      - context: $response.body
        condition: $.status == "succeeded"
        type: jsonpath
  - stepId: retryTransfer
    description: Retry the failed transfer to re-attempt the payout.
    operationId: retryTransfer
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: id
      in: path
      value: $steps.createTransfer.outputs.transferId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      retryStatus: $response.body#/status
      retryTransferId: $response.body#/id
  outputs:
    transferId: $steps.createTransfer.outputs.transferId
    transferStatus: $steps.verifyTransfer.outputs.transferStatus
    retryStatus: $steps.retryTransfer.outputs.retryStatus

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-transfer-verify-and-retry-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 email required.

A second provider on the same verified email joins the account you already have.