Retrieve User

get

/services/{version}/authorizations/{role}/{user}

Required Role: User

Get Authorization User Resource information.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Successfully return Authorization User Resource information.

Body ()
Root Schema : Oracle GoldenGate Service single User/Roles entry.
Title: Oracle GoldenGate Service single User/Roles entry.
Match Any
Show Source
Nested Schema : Oracle GoldenGate Service single User/Roles entry.-x-anyOf[0]
Type: object
Show Source
Nested Schema : Oracle GoldenGate Service single User/Roles entry.-x-anyOf[1]
Type: object
Show Source
Nested Schema : certificateBundle
Type: object
PEM encoded X.509 Certificate Data with Private-Key Data
Show Source
Nested Schema : caCertificates
Type: array
Minimum Number of Items: 1
Maximum Number of Items: 128
A collection of PEM encoded ca certificates.
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:9012/services/v2/authorizations/User/ggmsuser01",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:9012/services/v2/authorizations/User/ggmsuser01",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:9012/services/v2/metadata-catalog/user",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:userRole",
        "info":"Credential Information",
        "role":"User",
        "type":"Basic",
        "user":"ggmsuser01"
    }
}
Back to Top