Moniepoint · Arazzo Workflow

Moniepoint Verify And Disburse

Version 1.0.0

Name-inquiry a beneficiary bank account, then disburse to it and poll the transfer to a final state.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AfricaNigeriaPaymentsBankingFintechAcquiringPoint-of-SaleCollectionDisbursementsVirtual AccountsDirect DebitBills PaymentSMBWorking CapitalUnicornArazzoWorkflows

Provider

moniepoint

Workflows

verify-and-disburse
Verify a beneficiary account by Name Inquiry, then disburse to it and poll for completion.
Resolve the beneficiary account name via Name Inquiry, initiate a single transfer carrying that verified name, and poll the transfer status until it settles to SUCCESS, FAILED, or REVERSED.
3 steps inputs: amount, currency, destinationAccountNumber, destinationBankCode, narration, reference, sourceAccountNumber outputs: beneficiaryName, finalStatus, reference
1
nameInquiry
Resolve the registered account name for the beneficiary account number and bank code before paying out.
2
initiateTransfer
Initiate a single NIP transfer carrying the beneficiary account name resolved by Name Inquiry.
3
pollTransferStatus
Poll the single transfer summary until it reaches a terminal status of SUCCESS, FAILED, or REVERSED.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Moniepoint Verify And Disburse
  summary: Name-inquiry a beneficiary bank account, then disburse to it and poll the transfer to a final state.
  description: >-
    The April 2026 disbursement flow requires a Name Inquiry before paying out.
    This workflow validates the beneficiary account number and bank code to
    resolve the registered account name, initiates a single NIP transfer that
    carries that verified account name, and then polls the transfer summary
    until it reaches a terminal status. 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
  x-realizes-capability-ids:
  - BC-1300.20
  - 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-1300.20
      capability_name: KYC & Customer Due Diligence Management
      spec: moniepoint-verification-api-openapi.yml
      confidence: 0.78
    - capability_id: BC-1340.10
      capability_name: Payment Initiation Management
      spec: moniepoint-single-transfers-api-openapi.yml
      confidence: 0.75
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: singleTransfersApi
  url: ../openapi/moniepoint-single-transfers-api-openapi.yml
  type: openapi
- name: verificationApi
  url: ../openapi/moniepoint-verification-api-openapi.yml
  type: openapi
workflows:
- workflowId: verify-and-disburse
  summary: Verify a beneficiary account by Name Inquiry, then disburse to it and poll for completion.
  description: >-
    Resolve the beneficiary account name via Name Inquiry, initiate a single
    transfer carrying that verified name, and poll the transfer status until it
    settles to SUCCESS, FAILED, or REVERSED.
  inputs:
    type: object
    required:
    - destinationAccountNumber
    - destinationBankCode
    - amount
    - reference
    - narration
    - currency
    - sourceAccountNumber
    properties:
      destinationAccountNumber:
        type: string
        description: Beneficiary bank account number to pay out to.
      destinationBankCode:
        type: string
        description: NIP bank code of the beneficiary bank.
      amount:
        type: number
        description: Amount to transfer.
      reference:
        type: string
        description: Unique merchant reference for the transfer.
      narration:
        type: string
        description: Narration shown on the transfer (max 100 chars).
      currency:
        type: string
        description: ISO currency code for the transfer (e.g. NGN).
      sourceAccountNumber:
        type: string
        description: Merchant disbursement wallet account number to debit.
  steps:
  - stepId: nameInquiry
    description: >-
      Resolve the registered account name for the beneficiary account number
      and bank code before paying out.
    operationId: validateAccount
    parameters:
    - name: accountNumber
      in: query
      value: $inputs.destinationAccountNumber
    - name: bankCode
      in: query
      value: $inputs.destinationBankCode
    successCriteria:
    - condition: $statusCode == 200
    - condition: $.requestSuccessful == true
      context: $response.body
      type: jsonpath
    outputs:
      accountName: $response.body#/responseBody/accountName
  - stepId: initiateTransfer
    description: >-
      Initiate a single NIP transfer carrying the beneficiary account name
      resolved by Name Inquiry.
    operationId: initiateSingleTransfer
    requestBody:
      contentType: application/json
      payload:
        amount: $inputs.amount
        reference: $inputs.reference
        narration: $inputs.narration
        destinationBankCode: $inputs.destinationBankCode
        destinationAccountNumber: $inputs.destinationAccountNumber
        destinationAccountName: $steps.nameInquiry.outputs.accountName
        currency: $inputs.currency
        sourceAccountNumber: $inputs.sourceAccountNumber
    successCriteria:
    - condition: $statusCode == 200
    - condition: $.requestSuccessful == true
      context: $response.body
      type: jsonpath
    outputs:
      reference: $response.body#/responseBody/reference
      status: $response.body#/responseBody/status
  - stepId: pollTransferStatus
    description: >-
      Poll the single transfer summary until it reaches a terminal status of
      SUCCESS, FAILED, or REVERSED.
    operationId: getSingleTransferStatus
    parameters:
    - name: reference
      in: query
      value: $steps.initiateTransfer.outputs.reference
    successCriteria:
    - condition: $statusCode == 200
    - condition: $.responseBody.status == 'SUCCESS' || $.responseBody.status == 'FAILED' || $.responseBody.status == 'REVERSED'
      context: $response.body
      type: jsonpath
    retryAfter: 5
    retryLimit: 10
    outputs:
      status: $response.body#/responseBody/status
      amount: $response.body#/responseBody/amount
      fee: $response.body#/responseBody/fee
  outputs:
    reference: $steps.initiateTransfer.outputs.reference
    beneficiaryName: $steps.nameInquiry.outputs.accountName
    finalStatus: $steps.pollTransferStatus.outputs.status

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/moniepoint-verify-and-disburse-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.