Oracle GoldenGate · Example Payload

Oracle Goldengate Createuser Example

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Oracle Goldengate Createuser 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": "createUser",
  "method": "POST",
  "path": "/services/v2/authorizations/{role}/{user}",
  "summary": "Oracle Goldengate Create a User",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "CreateuserRequestExample",
      "example": {
        "password": "example_value",
        "description": "A sample description."
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Createuser201Example",
      "example": {
        "name": "Example Title",
        "role": "example_value",
        "description": "A sample description."
      }
    }
  ]
}