Workday · Capability

Workday Performance Management API — Feedback

Workday Performance Management API — Feedback. 3 operations. Lead operation: Get Feedback Badges. Self-contained Naftiko capability covering one Workday business surface.

Run with Naftiko WorkdayFeedback

What You Can Do

GET
Getfeedbackbadges — Get Feedback Badges
/v1/workers/{id}/feedbackbadges
POST
Givefeedbackbadge — Give Feedback Badge
/v1/workers/{id}/feedbackbadges
POST
Requestfeedback — Request Feedback
/v1/workers/{id}/requestfeedback

MCP Tools

get-feedback-badges

Get Feedback Badges

read-only idempotent
give-feedback-badge

Give Feedback Badge

request-feedback

Request Feedback

Capability Spec

performanceManagement-feedback.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Performance Management API — Feedback
  description: 'Workday Performance Management API — Feedback. 3 operations. Lead operation: Get Feedback Badges. Self-contained
    Naftiko capability covering one Workday business surface.'
  tags:
  - Workday
  - Feedback
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_API_KEY: WORKDAY_API_KEY
capability:
  consumes:
  - type: http
    namespace: performanceManagement-feedback
    baseUri: https://wd2-impl-services1.workday.com/ccx/api/performanceManagement/v1/{tenant}
    description: Workday Performance Management API — Feedback business capability. Self-contained, no shared references.
    resources:
    - name: workers-ID-feedbackBadges
      path: /workers/{ID}/feedbackBadges
      operations:
      - name: getfeedbackbadges
        method: GET
        description: Get Feedback Badges
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: givefeedbackbadge
        method: POST
        description: Give Feedback Badge
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: workers-ID-requestFeedback
      path: /workers/{ID}/requestFeedback
      operations:
      - name: requestfeedback
        method: POST
        description: Request Feedback
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.WORKDAY_API_KEY}}'
  exposes:
  - type: rest
    namespace: performanceManagement-feedback-rest
    port: 8080
    description: REST adapter for Workday Performance Management API — Feedback. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/workers/{id}/feedbackbadges
      name: workers-id-feedbackbadges
      description: REST surface for workers-ID-feedbackBadges.
      operations:
      - method: GET
        name: getfeedbackbadges
        description: Get Feedback Badges
        call: performanceManagement-feedback.getfeedbackbadges
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: givefeedbackbadge
        description: Give Feedback Badge
        call: performanceManagement-feedback.givefeedbackbadge
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/workers/{id}/requestfeedback
      name: workers-id-requestfeedback
      description: REST surface for workers-ID-requestFeedback.
      operations:
      - method: POST
        name: requestfeedback
        description: Request Feedback
        call: performanceManagement-feedback.requestfeedback
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: performanceManagement-feedback-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Performance Management API — Feedback. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: get-feedback-badges
      description: Get Feedback Badges
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: performanceManagement-feedback.getfeedbackbadges
      outputParameters:
      - type: object
        mapping: $.
    - name: give-feedback-badge
      description: Give Feedback Badge
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: performanceManagement-feedback.givefeedbackbadge
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: request-feedback
      description: Request Feedback
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: performanceManagement-feedback.requestfeedback
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.