Retrieve Configuration Value

get

/services/{version}/config/types/{type}/values/{value}

Retrieve a configuration value.

Request

Path Parameters
  • Minimum Length: 1
    Maximum Length: 64
    Pattern: ^[A-Za-z0-9][A-Za-z0-9_:-]*$

    Value name, an alpha-numeric character followed by up to 63 alpha-numeric characters, '_', ':' or '-'.

  • Oracle GoldenGate Service API version.

    Allowed Values: [ "v2" ]
Back to Top

Response

Supported Media Types

200 Response

Configuration value retrieved successfully.

Body ()
Root Schema : Oracle GoldenGate Configuration Value
Title: Oracle GoldenGate Configuration Value
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/config/types/custom:config/values/Example",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/config/types/custom:config/values/Example",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/value",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"custom:config",
        "lines":[
            "--",
            "--  Example Configuration Data",
            "--",
            "Include core.inc"
        ]
    }
}
Back to Top