Oracle GoldenGate · Example Payload

Oracle Goldengate Getoutofsyncdata Example

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Oracle Goldengate Getoutofsyncdata 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": "getOutOfSyncData",
  "method": "GET",
  "path": "/services/oos/{runId}",
  "summary": "Oracle Goldengate Retrieve Out-of-sync Data",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Getoutofsyncdata200Example",
      "example": {
        "runId": "500123",
        "rows": [
          {
            "comparePairId": "500123",
            "sourceTable": "example_value",
            "targetTable": "example_value",
            "oosType": "missing_in_target",
            "keyValues": "example_value"
          }
        ]
      }
    }
  ]
}