Workday · Example Payload

Workday Requestcompensationchange Example

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Workday Requestcompensationchange 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": "requestCompensationChange",
  "method": "POST",
  "path": "/workers/{ID}/requestCompensationChange",
  "summary": "Request Compensation Change",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "RequestcompensationchangeRequestExample",
      "example": {
        "effectiveDate": "2026-01-15",
        "reason": {
          "id": "abc123",
          "descriptor": "example_value",
          "href": "https://www.example.com"
        },
        "proposedCompensation": {
          "amount": 42.5,
          "currency": {
            "id": "abc123",
            "descriptor": "example_value",
            "href": "https://www.example.com"
          },
          "frequency": {
            "id": "abc123",
            "descriptor": "example_value",
            "href": "https://www.example.com"
          },
          "compensationGrade": {
            "id": "abc123",
            "descriptor": "example_value",
            "href": "https://www.example.com"
          },
          "compensationStep": {
            "id": "abc123",
            "descriptor": "example_value",
            "href": "https://www.example.com"
          }
        }
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Requestcompensationchange201Example",
      "example": {
        "id": "abc123",
        "descriptor": "example_value"
      }
    }
  ]
}