Rotate Key
GET/v1/auth/rotate-key
Rotate Key
Responses
- 200
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
keys
object[]
required
List of public keys for verifying Access Token JWTs
kid Kid (string)required
Key ID - see https://datatracker.ietf.org/doc/html/rfc7517#section-4.5
kty Kty (string)required
Key Type - see https://datatracker.ietf.org/doc/html/rfc7517#section-4.1
n N (string)required
Modulus - see https://www.rfc-editor.org/rfc/rfc7518.html#section-6.3.1
e E (string)required
Exponent - see https://www.rfc-editor.org/rfc/rfc7518.html#section-6.3.1
{
"keys": [
{
"kid": "string",
"kty": "string",
"n": "string",
"e": "string"
}
]
}
Loading...