Workday · Arazzo Workflow

Workday Review Supplier Spend

Version 1.0.0

List suppliers, load the first supplier's detail, then review purchase orders and customer invoices.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSoftware-as-a-ServiceArazzoWorkflows

Provider

workday

Workflows

review-supplier-spend
List suppliers, load the first, then review purchase orders and invoices.
Lists suppliers, then branches: if any exist it loads the first supplier's detail, lists purchase orders, and lists customer invoices, otherwise it ends.
4 steps inputs: authorization outputs: firstSupplierId, invoices, purchaseOrders, supplierDescriptor
1
listSuppliers
List suppliers.
2
getSupplierDetail
Load the detail record for the first supplier.
3
listPurchaseOrders
List purchase orders to assess committed spend.
4
listInvoices
List customer invoices to round out the spend picture.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Workday Review Supplier Spend
  summary: List suppliers, load the first supplier's detail, then review purchase orders and customer invoices.
  description: >-
    A procurement review flow. It lists suppliers and branches on whether any
    exist: when at least one is returned it loads the first supplier's detail,
    lists purchase orders, and lists customer invoices to build a spend picture,
    and when none are returned it ends. 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-200.30
  - BC-500.30
  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-200.30
      capability_name: Accounts Receivable Management
      spec: workday-revenue-api-openapi.yml
      confidence: 0.82
    - capability_id: BC-500.30
      capability_name: Purchase Order Management
      spec: workday-procurement-api-openapi.yml
      confidence: 0.8
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: procurementApi
  url: ../openapi/workday-procurement-api-openapi.yml
  type: openapi
- name: revenueApi
  url: ../openapi/workday-revenue-api-openapi.yml
  type: openapi
workflows:
- workflowId: review-supplier-spend
  summary: List suppliers, load the first, then review purchase orders and invoices.
  description: >-
    Lists suppliers, then branches: if any exist it loads the first supplier's
    detail, lists purchase orders, and lists customer invoices, otherwise it
    ends.
  inputs:
    type: object
    required:
    - authorization
    properties:
      authorization:
        type: string
        description: OAuth2 bearer token, e.g. "Bearer eyJ...".
  steps:
  - stepId: listSuppliers
    description: List suppliers.
    operationId: getSuppliers
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstSupplierId: $response.body#/data/0/id
    onSuccess:
    - name: hasSuppliers
      type: goto
      stepId: getSupplierDetail
      criteria:
      - context: $response.body
        condition: $.data.length > 0
        type: jsonpath
    - name: noSuppliers
      type: end
      criteria:
      - context: $response.body
        condition: $.data.length == 0
        type: jsonpath
  - stepId: getSupplierDetail
    description: Load the detail record for the first supplier.
    operationId: getSupplierById
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: ID
      in: path
      value: $steps.listSuppliers.outputs.firstSupplierId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      supplierDescriptor: $response.body#/descriptor
  - stepId: listPurchaseOrders
    description: List purchase orders to assess committed spend.
    operationId: getPurchaseOrders
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      purchaseOrders: $response.body#/data
  - stepId: listInvoices
    description: List customer invoices to round out the spend picture.
    operationId: getCustomerInvoices
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      invoices: $response.body#/data
  outputs:
    firstSupplierId: $steps.listSuppliers.outputs.firstSupplierId
    supplierDescriptor: $steps.getSupplierDetail.outputs.supplierDescriptor
    purchaseOrders: $steps.listPurchaseOrders.outputs.purchaseOrders
    invoices: $steps.listInvoices.outputs.invoices

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/workday-review-supplier-spend-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.