Get JWT keys
Get all JSON web keys for JWT verification
GET
/{apiBasePath}/jwt/jwks.jsonPath parameters
apiBasePathstringrequiredIts value depends on the apiBasePath set by the user
Responses
200Retrieve JWKs for JWT verification
One of:
object
keysobject[]Show propertiesHide properties
Array of
objectalgstringThe algorithm to use when creating the JWT.
Allowed:
RS256ktystringusestringkidstringUnique identifier for the JWK
nstringModulus for the key
estringExponent for the key
generalErrorResponse
statusstringError status code
Allowed:
GENERAL_ERRORmessagestringError message
400Bad request error
string404Resource not found error
string500Internal server error
stringTry it
Server
Parameters
Request
curl -X GET "/auth/jwt/jwks.json"const response = await fetch("/auth/jwt/jwks.json", {
method: "GET"
});import requests
response = requests.get(
"/auth/jwt/jwks.json",
)Response
{
"keys": [
{
"alg": "RS256",
"kty": "RSA",
"use": "sig",
"kid": "string",
"n": "string",
"e": "string"
}
]
}"Bad request""Not Found""Internal Error"