Oracle GoldenGate · Example Payload

Oracle Goldengate Listprofiles Example

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Oracle Goldengate Listprofiles 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": "listProfiles",
  "method": "GET",
  "path": "/services/configuration/profiles",
  "summary": "Oracle Goldengate Retrieve All Profiles",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Listprofiles200Example",
      "example": {
        "profiles": [
          {
            "id": "abc123",
            "name": "Example Title",
            "description": "A sample description.",
            "comparisonMethod": "row",
            "maxConcurrentComparePairs": 10,
            "deltaProcessing": true,
            "reportOutOfSync": true
          }
        ]
      }
    }
  ]
}