Workday · Example Payload

Workday Getworkcontactinformation Example

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Workday Getworkcontactinformation 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": "getWorkContactInformation",
  "method": "GET",
  "path": "/people/{ID}/workContactInformation",
  "summary": "Get Work Contact Information",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Getworkcontactinformation200Example",
      "example": {
        "emails": [
          {
            "emailAddress": "user@example.com",
            "isPrimary": true
          }
        ],
        "phones": [
          {
            "phoneNumber": "example_value",
            "isPrimary": true,
            "countryCode": "example_value"
          }
        ],
        "addresses": [
          {
            "addressLine1": "example_value",
            "addressLine2": "example_value",
            "city": "example_value",
            "postalCode": "example_value",
            "isPrimary": true
          }
        ]
      }
    }
  ]
}