Retrieve Encryption Key

get

/services/{version}/enckeys/{keyName}

Required Role: User

Retrieve details for an Encryption Key.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Encryption Key details retrieved.

Body ()
Root Schema : Oracle GoldenGate Encryption Key
Type: object
Title: Oracle GoldenGate Encryption Key
This schema describes an encryption key, used to encrypt data
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/enckeys/superkey",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/enckeys/superkey",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/keyName",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:encryptKey",
        "bitLength":"128"
    }
}
Back to Top