Get Public Key
DescriptionReturns a list of public keys in jwks format. You should use this keys in your application to validate that the access-token is valid. The KID fields in the access-token is the ID of the public key. The PEM format is deprecated as it returns only the current active public key
Access Policy
Role | User Accounts | Service Accounts (Client Credentials Applications) |
---|---|---|
Anonymous | ✔️ | ✔️ |
Request
URLURL
Query Parameters
Query Parameters
The format for the key. Must use the ‘jwks’ value because The ‘pem’ format is deprecated. Default value will be switched to ‘jwks’ after deprecation
Possible values are: pem , jwks
Authentication
Response
Response BodyResponse Body
200 OK
{
"alg": "string",
"issuer": "string",
"keys": {},
"value": "string"
}
The algorithm of the key.
The issuer of the key.
The list of the keys.
The value of the key.
Errors
Invalid format of public key.
The requested resource could not be found
The user has sent too many requests
An unexpected error has occurred while processing the request