Workday · Example Payload

Workday Createjobchange Example

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Workday Createjobchange 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": "createJobChange",
  "method": "POST",
  "path": "/workers/{ID}/jobChanges",
  "summary": "Create Job Change",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "CreatejobchangeRequestExample",
      "example": {
        "effectiveDate": "2026-01-15",
        "reason": {
          "id": "abc123",
          "descriptor": "example_value",
          "href": "https://www.example.com"
        },
        "proposedPosition": {
          "id": "abc123",
          "descriptor": "example_value",
          "href": "https://www.example.com"
        },
        "proposedLocation": {
          "id": "abc123",
          "descriptor": "example_value",
          "href": "https://www.example.com"
        },
        "proposedBusinessTitle": "example_value",
        "proposedJobProfile": {
          "id": "abc123",
          "descriptor": "example_value",
          "href": "https://www.example.com"
        }
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Createjobchange201Example",
      "example": {
        "id": "abc123",
        "descriptor": "example_value",
        "effectiveDate": "2026-01-15",
        "worker": {
          "id": "abc123",
          "descriptor": "example_value",
          "href": "https://www.example.com"
        },
        "reason": {
          "id": "abc123",
          "descriptor": "example_value",
          "href": "https://www.example.com"
        }
      }
    }
  ]
}