Fetch the public certificate of a given Identity Domain

get

/oauth2/rest/security

Request

Supported Media Types
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Public Certificate of the given domain.
Body ()
Root Schema : SecurityDetails
Type: object
Public Certificate of the Identity Domain.
Show Source
Example Response (application/json)
{
    "keys":[
        {
            "kty":"RSA",
            "x5t#S256":"string",
            "e":"string",
            "x5t":"####3",
            "kid":"SampleDomain",
            "x5c":[
                "Value1",
                "Value2"
            ],
            "key_ops":[
                "sign"
            ],
            "alg":"RS256",
            "n":"#####"
        }
    ]
}

400 Response

Bad Request
Body ()
Root Schema : ErrorCode
Type: object
Show Source
Back to Top