Workday Finance · Arazzo Workflow

Workday Finance Requisition to Purchase Order

Version 1.0.0

Find an approved requisition, confirm the supplier, then raise a purchase order.

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

Provider

workday-finance

Workflows

requisition-to-purchase-order
Move an approved requisition forward by raising a purchase order.
Lists requisitions, confirms the supplier is active, and creates a purchase order with the supplied order lines against that supplier.
3 steps inputs: lines, orderDate, supplierId, token outputs: purchaseOrderId, purchaseOrderStatus, requisitionTotal
1
listRequisitions
List purchase requisitions and branch on whether any requisitions are available to advance.
2
getSupplier
Confirm the supplier exists and is active before raising a purchase order from the requisition.
3
createPurchaseOrder
Create a purchase order against the confirmed supplier using the supplied order lines.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Workday Finance Requisition to Purchase Order
  summary: Find an approved requisition, confirm the supplier, then raise a purchase order.
  description: >-
    Advances a purchase requisition into the ordering stage. The workflow lists
    requisitions, branches on whether any were returned, confirms the supplier
    is active, and creates a purchase order against that supplier. 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: requisitionsApi
  url: ../openapi/workday-finance-requisitions-api-openapi.yml
  type: openapi
- name: suppliersApi
  url: ../openapi/workday-finance-suppliers-api-openapi.yml
  type: openapi
workflows:
- workflowId: requisition-to-purchase-order
  summary: Move an approved requisition forward by raising a purchase order.
  description: >-
    Lists requisitions, confirms the supplier is active, and creates a purchase
    order with the supplied order lines against that supplier.
  inputs:
    type: object
    required:
    - token
    - supplierId
    - lines
    properties:
      token:
        type: string
        description: OAuth 2.0 bearer access token for the Workday tenant.
      supplierId:
        type: string
        description: The supplier identifier to raise the purchase order against.
      orderDate:
        type: string
        description: The order date for the purchase order (YYYY-MM-DD).
      lines:
        type: array
        description: The order lines (item, quantity, unitCost) for the purchase order.
  steps:
  - stepId: listRequisitions
    description: >-
      List purchase requisitions and branch on whether any requisitions are
      available to advance.
    operationId: listRequisitions
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    - name: limit
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      requisitions: $response.body#/data
      total: $response.body#/total
    onSuccess:
    - name: requisitionsFound
      type: goto
      stepId: getSupplier
      criteria:
      - context: $response.body
        condition: $.data.length > 0
        type: jsonpath
    - name: requisitionsMissing
      type: end
      criteria:
      - context: $response.body
        condition: $.data.length == 0
        type: jsonpath
  - stepId: getSupplier
    description: >-
      Confirm the supplier exists and is active before raising a purchase order
      from the requisition.
    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: createPurchaseOrder
    description: >-
      Create a purchase order against the confirmed supplier using the supplied
      order lines.
    operationId: createPurchaseOrder
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    requestBody:
      contentType: application/json
      payload:
        supplier: $steps.getSupplier.outputs.supplierId
        orderDate: $inputs.orderDate
        lines: $inputs.lines
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      purchaseOrderId: $response.body#/id
      purchaseOrderNumber: $response.body#/purchaseOrderNumber
      status: $response.body#/status
  outputs:
    requisitionTotal: $steps.listRequisitions.outputs.total
    purchaseOrderId: $steps.createPurchaseOrder.outputs.purchaseOrderId
    purchaseOrderStatus: $steps.createPurchaseOrder.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/workday-finance-requisition-to-purchase-order-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.