Workday · Arazzo Workflow

Workday Request One-Time Payment

Version 1.0.0

Confirm a worker and read their pay slips, then submit a one-time payment request.

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

Provider

workday

Workflows

request-one-time-payment
Resolve a worker, read pay slips, then submit a one-time payment.
Reads the worker and recent pay slips, then submits a one-time payment request with the supplied effective date, amount, currency, and pay component.
3 steps inputs: amount, authorization, currency, effectiveDate, payComponent, reason, workerId outputs: paySlips, paymentId, workerDescriptor
1
getWorker
Confirm the worker exists before reading payroll data.
2
getPaySlips
Read recent pay slips for the worker for context.
3
requestPayment
{$sourceDescriptions.oneTimePaymentsApi.url}#/paths/~1workers~1{ID}~1requestOneTimePayment/post
Submit the one-time payment request for the worker.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Workday Request One-Time Payment
  summary: Confirm a worker and read their pay slips, then submit a one-time payment request.
  description: >-
    A one-time payment flow. It resolves the worker, reads recent pay slips for
    context, and then submits a one-time payment request. The one-time payment
    operation is defined in both the Compensation and Staffing specs, so it is
    referenced by its explicit source. 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-300.30
  - BC-300.70
  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-300.30
      capability_name: Compensation & Benefits Management
      spec: workday-one-time-payments-api-openapi.yml
      confidence: 0.88
    - capability_id: BC-300.70
      capability_name: HR Operations Management
      spec: workday-workers-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: oneTimePaymentsApi
  url: ../openapi/workday-one-time-payments-api-openapi.yml
  type: openapi
- name: paySlipsApi
  url: ../openapi/workday-pay-slips-api-openapi.yml
  type: openapi
- name: workersApi
  url: ../openapi/workday-workers-api-openapi.yml
  type: openapi
workflows:
- workflowId: request-one-time-payment
  summary: Resolve a worker, read pay slips, then submit a one-time payment.
  description: >-
    Reads the worker and recent pay slips, then submits a one-time payment
    request with the supplied effective date, amount, currency, and pay
    component.
  inputs:
    type: object
    required:
    - authorization
    - workerId
    - effectiveDate
    - amount
    - currency
    - payComponent
    properties:
      authorization:
        type: string
        description: OAuth2 bearer token, e.g. "Bearer eyJ...".
      workerId:
        type: string
        description: The Workday ID of the worker.
      effectiveDate:
        type: string
        description: The effective date of the payment (YYYY-MM-DD).
      reason:
        type: object
        description: The payment reason reference object (id, descriptor, href).
      currency:
        type: object
        description: The currency reference object (id, descriptor, href).
      amount:
        type: number
        description: The payment amount.
      payComponent:
        type: object
        description: The pay component reference object (id, descriptor, href).
  steps:
  - stepId: getWorker
    description: Confirm the worker exists before reading payroll data.
    operationId: getWorkerById
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: ID
      in: path
      value: $inputs.workerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      workerDescriptor: $response.body#/descriptor
  - stepId: getPaySlips
    description: Read recent pay slips for the worker for context.
    operationId: getPaySlips
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: ID
      in: path
      value: $inputs.workerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      paySlips: $response.body#/data
  - stepId: requestPayment
    description: Submit the one-time payment request for the worker.
    operationPath: '{$sourceDescriptions.oneTimePaymentsApi.url}#/paths/~1workers~1{ID}~1requestOneTimePayment/post'
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: ID
      in: path
      value: $inputs.workerId
    requestBody:
      contentType: application/json
      payload:
        effectiveDate: $inputs.effectiveDate
        reason: $inputs.reason
        currency: $inputs.currency
        amount: $inputs.amount
        payComponent: $inputs.payComponent
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      paymentId: $response.body#/id
      paymentDescriptor: $response.body#/descriptor
  outputs:
    workerDescriptor: $steps.getWorker.outputs.workerDescriptor
    paySlips: $steps.getPaySlips.outputs.paySlips
    paymentId: $steps.requestPayment.outputs.paymentId

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-request-one-time-payment-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.