Get Public Key Extended

Get Public Key Extended

Returns the public key to be used for verifying the idp generated tokens signature.

Request
URI
GET
https://sc2-10-185-6-200.eng.vmware.com//csp/gateway/am/api/auth/token-public-key
COPY
Query Parameters
The public key format.
Required

The public key format.

Possible values are : jwks, pem,

Responses
200

default response

Returns PublicKeyResponse of type(s) */*
{
    "alg": "string",
    "value": "string",
    "issuer": "string",
    "keys": [
        {}
    ]
}
string
alg
Optional

The algorithm associated with the public key.

string
value
Optional

The public key. Set in the case of pem format.

string
issuer
Optional

The issuer for the public key.

array of object
keys
Optional

The list of the currently valid public keys. Set in the case of jwks format. The model of this property is a Map of JsonWebKey objects.