Workday Finance · Arazzo Workflow

Workday Finance Reconcile Supplier Invoices

Version 1.0.0

Confirm a supplier, list its outstanding invoices, then trace one back to its purchase order.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub AccountingCloudEnterpriseERPFinanceFinancial ManagementArazzoWorkflows

Provider

workday-finance

Workflows

reconcile-supplier-invoices
Confirm a supplier, list its invoices, and trace one to its purchase order.
Reads the supplier, lists supplier invoices by status, and reads the purchase order referenced by the first invoice for reconciliation.
3 steps inputs: purchaseOrderId, status, supplierId, token outputs: invoiceTotal, purchaseOrderTotalAmount, supplierId
1
getSupplier
Read the supplier to confirm it exists before listing its outstanding invoices.
2
listSupplierInvoices
List supplier invoices filtered by status and branch on whether any invoices were returned.
3
getPurchaseOrder
Read the purchase order the invoices should reconcile against to compare totals and status.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Workday Finance Reconcile Supplier Invoices
  summary: Confirm a supplier, list its outstanding invoices, then trace one back to its purchase order.
  description: >-
    An accounts payable reconciliation flow. The workflow reads a supplier to
    confirm it is active, lists supplier invoices filtered by status, branches
    on whether any were returned, and reads the originating purchase order of
    the first invoice to reconcile the two. Each 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: purchaseOrdersApi
  url: ../openapi/workday-finance-purchase-orders-api-openapi.yml
  type: openapi
- name: supplierInvoicesApi
  url: ../openapi/workday-finance-supplier-invoices-api-openapi.yml
  type: openapi
- name: suppliersApi
  url: ../openapi/workday-finance-suppliers-api-openapi.yml
  type: openapi
workflows:
- workflowId: reconcile-supplier-invoices
  summary: Confirm a supplier, list its invoices, and trace one to its purchase order.
  description: >-
    Reads the supplier, lists supplier invoices by status, and reads the
    purchase order referenced by the first invoice for reconciliation.
  inputs:
    type: object
    required:
    - token
    - supplierId
    - purchaseOrderId
    properties:
      token:
        type: string
        description: OAuth 2.0 bearer access token for the Workday tenant.
      supplierId:
        type: string
        description: The supplier whose invoices are being reconciled.
      purchaseOrderId:
        type: string
        description: The purchase order to trace the first outstanding invoice back to.
      status:
        type: string
        description: Optional invoice status filter (e.g. submitted, approved).
  steps:
  - stepId: getSupplier
    description: >-
      Read the supplier to confirm it exists before listing its outstanding
      invoices.
    operationId: getSupplier
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    - name: supplierId
      in: path
      value: $inputs.supplierId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      supplierId: $response.body#/id
      status: $response.body#/status
  - stepId: listSupplierInvoices
    description: >-
      List supplier invoices filtered by status and branch on whether any
      invoices were returned.
    operationId: listSupplierInvoices
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    - name: status
      in: query
      value: $inputs.status
    - name: limit
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      invoices: $response.body#/data
      firstInvoiceId: $response.body#/data/0/id
      total: $response.body#/total
    onSuccess:
    - name: invoicesFound
      type: goto
      stepId: getPurchaseOrder
      criteria:
      - context: $response.body
        condition: $.data.length > 0
        type: jsonpath
    - name: invoicesMissing
      type: end
      criteria:
      - context: $response.body
        condition: $.data.length == 0
        type: jsonpath
  - stepId: getPurchaseOrder
    description: >-
      Read the purchase order the invoices should reconcile against to compare
      totals and status.
    operationId: getPurchaseOrder
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    - name: purchaseOrderId
      in: path
      value: $inputs.purchaseOrderId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      purchaseOrderId: $response.body#/id
      status: $response.body#/status
      totalAmount: $response.body#/totalAmount
  outputs:
    supplierId: $steps.getSupplier.outputs.supplierId
    invoiceTotal: $steps.listSupplierInvoices.outputs.total
    purchaseOrderTotalAmount: $steps.getPurchaseOrder.outputs.totalAmount

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-finance-reconcile-supplier-invoices-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.