Flutterwave · Arazzo Workflow

Flutterwave Orchestrator Order And Verify

Version 1.0.0

Initiate an order in one call with the Orchestrator helper, then retrieve it to confirm its status.

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

Provider

flutterwave

Workflows

orchestrator-order-and-verify
Initiate an Orchestrator order in one call and verify it was recorded.
Creates an order with the Orchestrator helper, then retrieves the order to confirm its status.
2 steps inputs: accessToken, amount, currency, customerId, items, reference outputs: orderId, orderStatus
1
initiateOrder
Create the order in a single Orchestrator call.
2
verifyOrder
Retrieve the order to confirm it was recorded and inspect its status.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Flutterwave Orchestrator Order And Verify
  summary: Initiate an order in one call with the Orchestrator helper, then retrieve it to confirm its status.
  description: >-
    A one-call checkout pattern. The workflow uses the Orchestrator order helper
    to create an order in a single request, then retrieves the resulting order
    to confirm it was recorded and inspect its status. This backs a hosted
    checkout that hands off cart construction to Flutterwave. 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: ordersApi
  url: ../openapi/flutterwave-orders-api-openapi.yml
  type: openapi
workflows:
- workflowId: orchestrator-order-and-verify
  summary: Initiate an Orchestrator order in one call and verify it was recorded.
  description: >-
    Creates an order with the Orchestrator helper, then retrieves the order to
    confirm its status.
  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: Total order amount in the major currency unit.
      currency:
        type: string
        description: ISO currency code for the order.
      customerId:
        type: string
        description: Optional existing customer id to attach to the order.
      items:
        type: array
        description: Line items for the order.
        items:
          type: object
      reference:
        type: string
        description: Optional merchant reference for the order.
  steps:
  - stepId: initiateOrder
    description: Create the order in a single Orchestrator call.
    operationId: initiateOrchestratorOrder
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        amount: $inputs.amount
        currency: $inputs.currency
        customer_id: $inputs.customerId
        items: $inputs.items
        reference: $inputs.reference
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      orderId: $response.body#/id
      initialStatus: $response.body#/status
  - stepId: verifyOrder
    description: Retrieve the order to confirm it was recorded and inspect its status.
    operationId: getOrder
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: id
      in: path
      value: $steps.initiateOrder.outputs.orderId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      orderStatus: $response.body#/status
  outputs:
    orderId: $steps.initiateOrder.outputs.orderId
    orderStatus: $steps.verifyOrder.outputs.orderStatus

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-orchestrator-order-and-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.