Workday · Arazzo Workflow

Workday Find Worker and Load Detail

Version 1.0.0

Search workers by name, then load the matched worker's full detail and recent history.

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

Provider

workday

Workflows

find-worker-detail
Search workers by name and load the first match's detail and history.
Searches workers by name, then branches: if a worker matched it loads the worker's detail and history, otherwise it ends.
3 steps inputs: authorization, limit, search outputs: businessTitle, history, matchedWorkerId
1
searchWorkers
Search the worker collection by name.
2
getDetail
Load the full detail record for the first matched worker.
3
getHistory
Load recent change history for the matched worker.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Workday Find Worker and Load Detail
  summary: Search workers by name, then load the matched worker's full detail and recent history.
  description: >-
    A worker lookup flow. It searches the worker collection by name and
    branches on whether a match was found: when at least one worker matches it
    loads the first match's full detail record and recent change history, and
    when nothing matches it ends without further calls. 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.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.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: workersApi
  url: ../openapi/workday-workers-api-openapi.yml
  type: openapi
workflows:
- workflowId: find-worker-detail
  summary: Search workers by name and load the first match's detail and history.
  description: >-
    Searches workers by name, then branches: if a worker matched it loads the
    worker's detail and history, otherwise it ends.
  inputs:
    type: object
    required:
    - authorization
    - search
    properties:
      authorization:
        type: string
        description: OAuth2 bearer token, e.g. "Bearer eyJ...".
      search:
        type: string
        description: The case-insensitive name to search workers by.
      limit:
        type: integer
        description: Maximum number of workers to return (default 20, max 100).
  steps:
  - stepId: searchWorkers
    description: Search the worker collection by name.
    operationId: getWorkers
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: search
      in: query
      value: $inputs.search
    - name: limit
      in: query
      value: $inputs.limit
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      matchedWorkerId: $response.body#/data/0/id
      total: $response.body#/total
    onSuccess:
    - name: workerFound
      type: goto
      stepId: getDetail
      criteria:
      - context: $response.body
        condition: $.data.length > 0
        type: jsonpath
    - name: noWorker
      type: end
      criteria:
      - context: $response.body
        condition: $.data.length == 0
        type: jsonpath
  - stepId: getDetail
    description: Load the full detail record for the first matched worker.
    operationId: getWorkerById
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: ID
      in: path
      value: $steps.searchWorkers.outputs.matchedWorkerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      workerId: $response.body#/id
      businessTitle: $response.body#/businessTitle
      primarySupervisoryOrganization: $response.body#/primarySupervisoryOrganization
  - stepId: getHistory
    description: Load recent change history for the matched worker.
    operationId: getWorkerHistory
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: ID
      in: path
      value: $steps.searchWorkers.outputs.matchedWorkerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      history: $response.body#/data
  outputs:
    matchedWorkerId: $steps.searchWorkers.outputs.matchedWorkerId
    businessTitle: $steps.getDetail.outputs.businessTitle
    history: $steps.getHistory.outputs.history

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-find-worker-detail-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.