Validate

get

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

Required Role: User

Check validity of credentials and return database credentials details.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

The user name and password associated with the alias are valid.

Body ()
Root Schema : Oracle GoldenGate Database Credentials Details
Type: object
Title: Oracle GoldenGate Database Credentials Details
Show Source
Nested Schema : catalogName
Match One
Show Source
  • Minimum Length: 1
    Maximum Length: 130
    Pattern: ^([^.*?"]{1,128}|["].{1,128}["])$
Nested Schema : serverName
Match One
Show Source
  • Minimum Length: 1
    Maximum Length: 130
    Pattern: ^([^.*?"]{1,128}|["].{1,128}["])$
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:9012/services/v2/credentials/OracleGoldenGate/ggnorth/valid",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:9012/services/v2/credentials/OracleGoldenGate/ggnorth/valid",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:9012/services/v2/metadata-catalog/valid",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:credentialsDetails",
        "alias":"ggnorth",
        "catalogName":"CDB$ROOT",
        "domain":"OracleGoldenGate",
        "serverName":"ORCLCDB"
    }
}
Back to Top