Retrieve Connection

get

/services/{version}/connections/{connection}

Retrieve the database connection details.

Request

Path Parameters
  • Minimum Length: 1
    Maximum Length: 61
    Pattern: ^[a-zA-Z][a-zA-Z0-9_#$]{1,29}([.][a-zA-Z][a-zA-Z0-9_#$]{1,29})?$

    Connection name. For each alias in the credential store, a connection with the name 'domain.alias' exists.

  • Oracle GoldenGate Service API version.

    Allowed Values: [ "v2" ]
Back to Top

Response

Supported Media Types

200 Response

Database connection details retrieved.

Body ()
Root Schema : Oracle GoldenGate database connection
Type: object
Title: Oracle GoldenGate database connection
Show Source
Nested Schema : credentials
Type: object
Credentials for database
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/connections/LocalDBMS",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/connections/LocalDBMS",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/connection",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:connection",
        "credentials":{
            "alias":"oggadmin",
            "domain":"OracleGoldenGate"
        }
    }
}
Back to Top