Retrieve Alias

get

/services/{version}/credentials/{domain}/{alias}

Required Role: User

Retrieve the available information for an alias in a credential store domain. The password for an alias will not be returned.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Details of the credential store alias returned successfully.

Body ()
Root Schema : Oracle GoldenGate Database Credentials
Type: object
Title: Oracle GoldenGate Database Credentials
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/credentials/OracleGoldenGate/oggadmin",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/credentials/OracleGoldenGate/oggadmin",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/alias",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:credentials",
        "userid":"oggadmin@//localhost:1521/ORCL"
    }
}
Back to Top