Workday · Example Payload

Workday Getpersonbyid Example

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Workday Getpersonbyid 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": "getPersonById",
  "method": "GET",
  "path": "/people/{ID}",
  "summary": "Get Person by Id",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Getpersonbyid200Example",
      "example": {
        "id": "abc123",
        "descriptor": "example_value",
        "legalName": {
          "firstName": "example_value",
          "middleName": "example_value",
          "lastName": "example_value",
          "fullName": "example_value",
          "prefix": "example_value",
          "suffix": "example_value"
        },
        "preferredName": {
          "firstName": "example_value",
          "middleName": "example_value",
          "lastName": "example_value",
          "fullName": "example_value",
          "prefix": "example_value",
          "suffix": "example_value"
        },
        "dateOfBirth": "2026-01-15",
        "gender": {
          "id": "abc123",
          "descriptor": "example_value",
          "href": "https://www.example.com"
        },
        "nationality": {
          "id": "abc123",
          "descriptor": "example_value",
          "href": "https://www.example.com"
        },
        "citizenship": [
          {
            "id": "abc123",
            "descriptor": "example_value",
            "href": "https://www.example.com"
          }
        ],
        "maritalStatus": {
          "id": "abc123",
          "descriptor": "example_value",
          "href": "https://www.example.com"
        }
      }
    }
  ]
}