Retrieve Alias

get

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

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

Request

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

    Credential store alias.

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

    Credential store domain name.

    Default Value: OracleGoldenGate
  • Oracle GoldenGate Service API version.

    Allowed Values: [ "v2" ]

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"
    }
}