List Users

get

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

Get the collection of Authorized Users associated with the Authorization Role.

Request

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

    Authorization Role Resource Name

    Default Value: User
  • Oracle GoldenGate Service API version.

    Allowed Values: [ "v2" ]
Back to Top

Response

Supported Media Types

200 Response

Successfully returned a collection Authorized Users Resources associated Authorization Role.

Body ()
Root Schema : Oracle GoldenGate Collection of Users
Type: object
Title: Oracle GoldenGate Collection of Users
Show Source
Nested Schema : items
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 32767
Show Source
Nested Schema : items
Type: object
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/authorizations/Administrator",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/authorizations/Administrator",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/role",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:userCollection",
        "items":[
            {
                "links":[
                    {
                        "href":"http://localhost:11001//services/v2/authorizations/Administrator/CN=Local%2COU=GoldenGate%2COU=Enterprise%20Replication%2COU=Server%20Technology%2CO=Oracle%20Corp%2CL=Redwood%20Shores%2CST=CA%2CC=US",
                        "mediaType":"application/json",
                        "rel":"canonical"
                    }
                ],
                "username":"CN=Local,OU=GoldenGate,OU=Enterprise Replication,OU=Server Technology,O=Oracle Corp,L=Redwood Shores,ST=CA,C=US"
            }
        ]
    }
}
Back to Top