Workday · Example Payload

Workday Requestfeedback Example

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Workday Requestfeedback Example is an example object payload from Workday, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "requestFeedback",
  "method": "POST",
  "path": "/workers/{ID}/requestFeedback",
  "summary": "Request Feedback",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "RequestfeedbackRequestExample",
      "example": {
        "respondents": [
          {
            "id": "abc123",
            "descriptor": "example_value",
            "href": "https://www.example.com"
          }
        ],
        "questions": [
          "example_value"
        ],
        "dueDate": "2026-01-15"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Requestfeedback201Example",
      "example": {
        "id": "abc123",
        "descriptor": "example_value"
      }
    }
  ]
}