Workday · Example Payload

Workday Getjobpostings Example

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Workday Getjobpostings 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": "getJobPostings",
  "method": "GET",
  "path": "/jobPostings",
  "summary": "Get Job Postings",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Getjobpostings200Example",
      "example": {
        "data": [
          {
            "id": "abc123",
            "descriptor": "example_value",
            "title": "Example Title",
            "startDate": "2026-01-15",
            "endDate": "2026-01-15",
            "jobDescription": "example_value",
            "isInternal": true,
            "isExternal": true,
            "postedOn": "2026-01-15T10:30:00Z"
          }
        ],
        "total": 10
      }
    }
  ]
}