Workday · Arazzo Workflow

Workday Request Feedback

Version 1.0.0

Read a worker's goals and reviews, then request feedback from respondents.

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

Provider

workday

Workflows

request-feedback
Read goals and reviews, then request feedback from respondents.
Reads the worker, their goals, and their performance reviews, then initiates a feedback request to the supplied respondents with the supplied questions and due date.
4 steps inputs: authorization, dueDate, questions, respondents, workerId outputs: feedbackRequestId, goals, workerDescriptor
1
getWorker
Confirm the worker exists before requesting feedback.
2
getGoals
Read the worker's goals to ground the feedback request.
3
getReviews
Read the worker's performance reviews for additional context.
4
requestFeedback
Initiate the feedback request to the respondents.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Workday Request Feedback
  summary: Read a worker's goals and reviews, then request feedback from respondents.
  description: >-
    A performance flow. It resolves the worker, reads their goals and existing
    performance reviews to ground the feedback request, and then initiates a
    request for feedback from a set of respondents. 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.20
  - 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.20
      capability_name: Talent Management
      spec: workday-performance-reviews-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: feedbackApi
  url: ../openapi/workday-feedback-api-openapi.yml
  type: openapi
- name: goalsApi
  url: ../openapi/workday-goals-api-openapi.yml
  type: openapi
- name: performanceReviewsApi
  url: ../openapi/workday-performance-reviews-api-openapi.yml
  type: openapi
- name: workersApi
  url: ../openapi/workday-workers-api-openapi.yml
  type: openapi
workflows:
- workflowId: request-feedback
  summary: Read goals and reviews, then request feedback from respondents.
  description: >-
    Reads the worker, their goals, and their performance reviews, then
    initiates a feedback request to the supplied respondents with the supplied
    questions and due date.
  inputs:
    type: object
    required:
    - authorization
    - workerId
    - respondents
    - questions
    properties:
      authorization:
        type: string
        description: OAuth2 bearer token, e.g. "Bearer eyJ...".
      workerId:
        type: string
        description: The Workday ID of the worker the feedback is about.
      respondents:
        type: array
        description: The list of respondent reference objects (id, descriptor, href).
        items:
          type: object
      questions:
        type: array
        description: The list of feedback question strings.
        items:
          type: string
      dueDate:
        type: string
        description: The due date for the feedback (YYYY-MM-DD).
  steps:
  - stepId: getWorker
    description: Confirm the worker exists before requesting feedback.
    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: getGoals
    description: Read the worker's goals to ground the feedback request.
    operationId: getWorkerGoals
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: ID
      in: path
      value: $inputs.workerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      goals: $response.body#/data
  - stepId: getReviews
    description: Read the worker's performance reviews for additional context.
    operationId: getPerformanceReviews
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: ID
      in: path
      value: $inputs.workerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      reviews: $response.body#/data
  - stepId: requestFeedback
    description: Initiate the feedback request to the respondents.
    operationId: requestFeedback
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: ID
      in: path
      value: $inputs.workerId
    requestBody:
      contentType: application/json
      payload:
        respondents: $inputs.respondents
        questions: $inputs.questions
        dueDate: $inputs.dueDate
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      feedbackRequestId: $response.body#/id
      feedbackRequestDescriptor: $response.body#/descriptor
  outputs:
    workerDescriptor: $steps.getWorker.outputs.workerDescriptor
    goals: $steps.getGoals.outputs.goals
    feedbackRequestId: $steps.requestFeedback.outputs.feedbackRequestId

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-feedback-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.