Interswitch · Arazzo Workflow

Interswitch Lending Offer To Disbursement

Version 1.0.0

Fetch a customer's loan offers, accept one, fund the loan, then confirm the customer's loan status.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub PaymentsPayment InfrastructureCard NetworkVerveQuicktellerWebpayBills PaymentTransfersLendingFintechAfricaNigeriaArazzoWorkflows

Provider

interswitch

Workflows

offer-to-disbursement
Accept a loan offer, fund the loan, and confirm the active loan.
Lists offers for a customer, accepts the chosen offer, funds the resulting loan, and confirms the customer now has an active loan.
4 steps inputs: accessToken, amount, customerId, offerId outputs: hasActiveLoan, loanId
1
listOffers
Fetch the loan offers available to the customer.
2
acceptOffer
Accept the chosen offer, creating a loan in PENDING status.
3
fundLoan
Disburse the accepted loan funds to the borrower.
4
confirmStatus
Read the customer's loan status to confirm an active loan exists.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Interswitch Lending Offer To Disbursement
  summary: Fetch a customer's loan offers, accept one, fund the loan, then confirm the customer's loan status.
  description: >-
    Marketplace lending origination flow. The workflow fetches the loan offers
    available to a customer, accepts the chosen offer to create a loan,
    disburses the accepted funds, and then reads the customer's loan status to
    confirm an active loan now exists. The offerId is supplied as an input and
    the resulting loanId is threaded into funding. All requests are
    Bearer-authenticated.
  version: 1.0.0
sourceDescriptions:
- name: customersApi
  url: ../openapi/interswitch-customers-api-openapi.yml
  type: openapi
- name: loansApi
  url: ../openapi/interswitch-loans-api-openapi.yml
  type: openapi
- name: offersApi
  url: ../openapi/interswitch-offers-api-openapi.yml
  type: openapi
workflows:
- workflowId: offer-to-disbursement
  summary: Accept a loan offer, fund the loan, and confirm the active loan.
  description: >-
    Lists offers for a customer, accepts the chosen offer, funds the resulting
    loan, and confirms the customer now has an active loan.
  inputs:
    type: object
    required:
    - accessToken
    - customerId
    - offerId
    properties:
      accessToken:
        type: string
        description: Bearer access token from the Passport OAuth token endpoint.
      customerId:
        type: string
        description: Customer the offers are listed and the loan is created for.
      offerId:
        type: string
        description: The loan offer to accept.
      amount:
        type: integer
        description: Optional requested principal used to filter offers.
  steps:
  - stepId: listOffers
    description: Fetch the loan offers available to the customer.
    operationId: listLoanOffers
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: customerId
      in: query
      value: $inputs.customerId
    - name: amount
      in: query
      value: $inputs.amount
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      offers: $response.body
  - stepId: acceptOffer
    description: Accept the chosen offer, creating a loan in PENDING status.
    operationId: acceptLoanOffer
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: offerId
      in: path
      value: $inputs.offerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      loanId: $response.body#/loanId
      status: $response.body#/status
      principal: $response.body#/principal
  - stepId: fundLoan
    description: Disburse the accepted loan funds to the borrower.
    operationId: fundLoan
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: loanId
      in: path
      value: $steps.acceptOffer.outputs.loanId
    successCriteria:
    - condition: $statusCode == 200
  - stepId: confirmStatus
    description: Read the customer's loan status to confirm an active loan exists.
    operationId: getCustomerLoanStatus
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: customerId
      in: path
      value: $inputs.customerId
    successCriteria:
    - condition: $statusCode == 200
    - condition: $response.body#/hasActiveLoan == true
    outputs:
      hasActiveLoan: $response.body#/hasActiveLoan
      activeLoans: $response.body#/activeLoans
  outputs:
    loanId: $steps.acceptOffer.outputs.loanId
    hasActiveLoan: $steps.confirmStatus.outputs.hasActiveLoan

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/interswitch-lending-offer-to-disbursement-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.