Retrieve API Versions

get

/services

Each Oracle GoldenGate service exposes one or more versions of the REST API for backward compatibility. Retrieve the collection of available API versions using this endpoint.

Request

There are no request parameters for this operation.

Response

Supported Media Types

200 Response

The list of available API versions was retrieved successfully.

Body ()
Root Schema : Oracle GoldenGate Supported API versions
Type: object
Title: Oracle GoldenGate Supported API versions
Show Source
Nested Schema : items
Type: array
Minimum Number of Items: 1
Maximum Number of Items: 8
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : catalog
Type: object
Show Source
Example Response (application/json)
{
    "$schema":"api:versions",
    "items":[
        {
            "$schema":"api:version",
            "catalog":{
                "links":[
                    {
                        "href":"http://localhost:11001/services/v2/metadata-catalog",
                        "rel":"canonical"
                    }
                ]
            },
            "isLatest":true,
            "lifecycle":"active",
            "version":"v2"
        }
    ],
    "links":[
        {
            "href":"http://localhost:11001/services/v2",
            "mediaType":"application/json",
            "rel":"current"
        },
        {
            "href":"http://localhost:11001/services",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services",
            "mediaType":"application/json",
            "rel":"self"
        }
    ]
}