Oracle GoldenGate · Example Payload

Oracle Goldengate Listjobs Example

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Oracle Goldengate Listjobs Example is an example object payload from Oracle GoldenGate, 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": "listJobs",
  "method": "GET",
  "path": "/services/configuration/jobs",
  "summary": "Oracle Goldengate Retrieve All Jobs",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Listjobs200Example",
      "example": {
        "jobs": [
          {
            "id": "abc123",
            "name": "Example Title",
            "description": "A sample description.",
            "groupIds": {},
            "profileId": "500123",
            "status": "idle"
          }
        ]
      }
    }
  ]
}