Recurrency · Arazzo Workflow

Recurrency procure-to-pay

Version 1.0.0

Discover a supplier, find an item, confirm price, create an order, and read it back.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CompanyAi MlERPDistributionWholesaleeProcurementSupply ChainOrderArazzoWorkflows

Provider

recurrency

Workflows

procureToPay
End-to-end supplier discovery to placed order.
5 steps inputs: customerId, qtyOrdered, salesLocId, searchQuery, sourceLocId outputs: orderId, status
1
findSupplier
2
findItem
3
checkPrice
4
placeOrder
5
confirmOrder

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Recurrency procure-to-pay
  version: 1.0.0
  summary: Discover a supplier, find an item, confirm price, create an order, and read it back.
sourceDescriptions:
- name: eProcurementApi
  url: ../openapi/recurrency-e-procurement-api-openapi.yml
  type: openapi
- name: ordersApi
  url: ../openapi/recurrency-orders-api-openapi.yml
  type: openapi
workflows:
- workflowId: procureToPay
  summary: End-to-end supplier discovery to placed order.
  inputs:
    type: object
    properties:
      searchQuery: {type: string}
      salesLocId: {type: string}
      sourceLocId: {type: string}
      customerId: {type: string}
      qtyOrdered: {type: string}
    required: [salesLocId, sourceLocId, customerId, qtyOrdered]
  steps:
  - stepId: findSupplier
    operationId: listSuppliers
    outputs:
      supplierSlug: $response.body#/items/0/slug
  - stepId: findItem
    operationId: listItems
    parameters:
    - {name: supplierSlug, in: path, value: $steps.findSupplier.outputs.supplierSlug}
    - {name: searchQuery, in: query, value: $inputs.searchQuery}
    - {name: limit, in: query, value: 1}
    outputs:
      itemId: $response.body#/items/0/itemId
  - stepId: checkPrice
    operationId: getItemPrice
    parameters:
    - {name: supplierSlug, in: path, value: $steps.findSupplier.outputs.supplierSlug}
    - {name: itemId, in: query, value: $steps.findItem.outputs.itemId}
    - {name: salesLocId, in: query, value: $inputs.salesLocId}
    - {name: sourceLocId, in: query, value: $inputs.sourceLocId}
    outputs:
      unitPrice: $response.body#/unitPrice
      unitOfMeasure: $response.body#/unitOfMeasure
  - stepId: placeOrder
    operationId: createOrder
    requestBody:
      contentType: application/json
      payload:
        customerId: $inputs.customerId
        lines:
        - itemId: $steps.findItem.outputs.itemId
          qtyOrdered: $inputs.qtyOrdered
          unitPrice: $steps.checkPrice.outputs.unitPrice
          unitOfMeasure: $steps.checkPrice.outputs.unitOfMeasure
    outputs:
      orderId: $response.body#/orderId
  - stepId: confirmOrder
    operationId: getOrderDetails
    parameters:
    - {name: salesOrderId, in: path, value: $steps.placeOrder.outputs.orderId}
    outputs:
      status: $response.body#/status
  outputs:
    orderId: $steps.placeOrder.outputs.orderId
    status: $steps.confirmOrder.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/recurrency-procure-to-pay"
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.