Workday · Arazzo Workflow

Workday Give Feedback Badge

Version 1.0.0

Confirm a worker and review their existing badges, then give a new feedback badge.

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

Provider

workday

Workflows

give-feedback-badge
Resolve a worker, review existing badges, then give a new feedback badge.
Reads the worker and their existing feedback badges, then gives a new feedback badge with the supplied badge reference and optional comment.
3 steps inputs: authorization, badge, comment, workerId outputs: badgeId, existingBadges, workerDescriptor
1
getWorker
getWorkerById
Confirm the worker exists before giving a badge.
2
getExistingBadges
getFeedbackBadges
Read the feedback badges the worker has already received.
3
giveBadge
giveFeedbackBadge
Give a new feedback badge to the worker.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Workday Give Feedback Badge
  summary: Confirm a worker and review their existing badges, then give a new feedback badge.
  description: >-
    A talent recognition flow. It resolves the worker, reads the feedback
    badges they have already received for context, and then gives a new
    feedback badge with an optional comment. 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
sourceDescriptions:
- name: hcmApi
  url: ../openapi/hcm.yml
  type: openapi
- name: performanceManagementApi
  url: ../openapi/performanceManagement.yml
  type: openapi
workflows:
- workflowId: give-feedback-badge
  summary: Resolve a worker, review existing badges, then give a new feedback badge.
  description: >-
    Reads the worker and their existing feedback badges, then gives a new
    feedback badge with the supplied badge reference and optional comment.
  inputs:
    type: object
    required:
    - authorization
    - workerId
    - badge
    properties:
      authorization:
        type: string
        description: OAuth2 bearer token, e.g. "Bearer eyJ...".
      workerId:
        type: string
        description: The Workday ID of the worker receiving the badge.
      badge:
        type: object
        description: The badge reference object (id, descriptor, href).
      comment:
        type: string
        description: An optional comment accompanying the badge.
  steps:
  - stepId: getWorker
    description: Confirm the worker exists before giving a badge.
    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: getExistingBadges
    description: Read the feedback badges the worker has already received.
    operationId: getFeedbackBadges
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: ID
      in: path
      value: $inputs.workerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      existingBadges: $response.body#/data
  - stepId: giveBadge
    description: Give a new feedback badge to the worker.
    operationId: giveFeedbackBadge
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: ID
      in: path
      value: $inputs.workerId
    requestBody:
      contentType: application/json
      payload:
        badge: $inputs.badge
        comment: $inputs.comment
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      badgeId: $response.body#/id
      givenDate: $response.body#/givenDate
  outputs:
    workerDescriptor: $steps.getWorker.outputs.workerDescriptor
    existingBadges: $steps.getExistingBadges.outputs.existingBadges
    badgeId: $steps.giveBadge.outputs.badgeId

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-give-feedback-badge-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 email required.

A second provider on the same verified email joins the account you already have.