Retrieve User

get

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

Get Authorization User Resource information.

Request

Path Parameters
  • Minimum Length: 1
    Maximum Length: 256
    Pattern: ^[a-zA-Z][a-zA-Z0-9_#$]*$

    Authorization Role Resource Name

    Default Value: User
  • Minimum Length: 1
    Maximum Length: 512

    User Resource Name

  • Oracle GoldenGate Service API version.

    Allowed Values: [ "v2" ]
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.
Type: object
Title: Oracle GoldenGate Service single User/Roles entry.
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/authorizations/User/tkgguser03",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/authorizations/User/tkgguser03",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/user",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:userRole",
        "credential":"HzRB8n+yjbwkxvdXSlNaxQemHfrSAZ8hy4YN/05hVR8=",
        "info":"Example user #3",
        "role":"User",
        "type":"Basic",
        "user":"tkgguser03"
    }
}
Back to Top