Describe API Version

get

/services/{version}

Use this endpoint to obtain details of a specific version of an Oracle GoldenGate Service REST API.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

The API version details were retrieved successfully.

Body ()
Root Schema : Oracle GoldenGate RESTful API version
Type: object
Title: Oracle GoldenGate RESTful API version
Show Source
Nested Schema : catalog
Type: object
Show Source
Example Response (application/json)
{
    "$schema":"api:version",
    "catalog":{
        "links":[
            {
                "href":"http://localhost:11001/services/v2/metadata-catalog",
                "mediaType":"application/json",
                "rel":"canonical"
            }
        ]
    },
    "isLatest":true,
    "lifecycle":"active",
    "links":[
        {
            "href":"http://localhost:11001/services/v2",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2",
            "mediaType":"application/json",
            "rel":"self"
        }
    ],
    "version":"v2"
}
Back to Top