Workday · Example Payload

Workday Getsupplierbyid Example

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Workday Getsupplierbyid 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": "getSupplierById",
  "method": "GET",
  "path": "/suppliers/{ID}",
  "summary": "Get Supplier by Id",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Getsupplierbyid200Example",
      "example": {
        "id": "abc123",
        "descriptor": "example_value",
        "supplierName": "example_value",
        "supplierID": "500123",
        "supplierCategory": {
          "id": "abc123",
          "descriptor": "example_value",
          "href": "https://www.example.com"
        },
        "taxID": "500123",
        "paymentTerms": {
          "id": "abc123",
          "descriptor": "example_value",
          "href": "https://www.example.com"
        },
        "isActive": true,
        "address": {
          "addressLine1": "example_value",
          "city": "example_value",
          "stateProvince": {
            "id": "abc123",
            "descriptor": "example_value",
            "href": "https://www.example.com"
          },
          "postalCode": "example_value",
          "country": {
            "id": "abc123",
            "descriptor": "example_value",
            "href": "https://www.example.com"
          }
        }
      }
    }
  ]
}