Workday · Example Payload

Workday Getworkers Example

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Workday Getworkers 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": "getWorkers",
  "method": "GET",
  "path": "/workers",
  "summary": "Get Workers",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Getworkers200Example",
      "example": {
        "data": [
          {
            "id": "abc123",
            "descriptor": "example_value",
            "href": "https://www.example.com",
            "primaryWorkEmail": "user@example.com",
            "primaryWorkPhone": "example_value",
            "isPrimaryJob": true,
            "businessTitle": "example_value"
          }
        ],
        "total": 10
      }
    }
  ]
}