Workday · Example Payload

Workday Getsuppliers Example

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Workday Getsuppliers 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": "getSuppliers",
  "method": "GET",
  "path": "/suppliers",
  "summary": "Get Suppliers",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Getsuppliers200Example",
      "example": {
        "data": [
          {
            "id": "abc123",
            "descriptor": "example_value",
            "supplierName": "example_value",
            "supplierID": "500123",
            "taxID": "500123",
            "isActive": true,
            "address": {
              "addressLine1": "example_value",
              "city": "example_value",
              "postalCode": "example_value"
            }
          }
        ],
        "total": 10
      }
    }
  ]
}