Oracle E-Business Suite · Example Payload

Oracle E Business Suite Getpayrolls Example

Business ApplicationsE-Business SuiteEnterpriseERPOracle

Oracle E Business Suite Getpayrolls Example is an example object payload from Oracle E-Business Suite, 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": "getPayrolls",
  "method": "GET",
  "path": "/pay/payrolls",
  "summary": "Retrieve Payroll Definitions",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Getpayrolls200Example",
      "example": {
        "items": [
          {
            "payrollId": "500123",
            "payrollName": "example_value",
            "periodType": "Calendar Month",
            "numberOfYears": 10,
            "firstPeriodEndDate": "2026-01-15",
            "effectiveStartDate": "2026-01-15",
            "effectiveEndDate": "2026-01-15",
            "businessGroupId": "500123"
          }
        ],
        "totalCount": 10,
        "hasMore": true
      }
    }
  ]
}