Workday · Example Payload

Workday Getcustomreport Example

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Workday Getcustomreport 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": "getCustomReport",
  "method": "GET",
  "path": "/{reportOwner}/{reportName}",
  "summary": "Get Custom Report Data",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Getcustomreport200Example",
      "example": {
        "Report_Entry": [
          {}
        ]
      }
    },
    {
      "status": "200",
      "contentType": "text/csv",
      "name": "Getcustomreport200Example",
      "example": "example_value"
    },
    {
      "status": "200",
      "contentType": "application/xml",
      "name": "Getcustomreport200Example",
      "example": "example_value"
    },
    {
      "status": "404",
      "contentType": "application/json",
      "name": "Getcustomreport404Example",
      "example": {
        "error": "example_value",
        "errors": [
          {
            "error": "example_value",
            "field": "example_value"
          }
        ]
      }
    }
  ]
}