JWKS Endpoint
GET/v3/service/extension/oidc/:organisationId/.well-known/jwks.json
JSON Web Key Set (JWKS) endpoint that provides the public keys used to verify the signatures of JWT tokens issued by this OpenID Provider. These keys are used by relying parties to validate ID tokens and other signed responses.
Request
Path Parameters
organisationId stringrequired
The ID of the organisation
Responses
- 200
JSON Web Key Set (JWKS)
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
keys object[]
kid string
Key ID, the unique identifier for the key
kty string
Key type, the cryptographic algorithm family used with the key
crv string
Curve, used with elliptic curve keys
alg string
Algorithm, the algorithm intended for use with the key
use string
Public key use, the intended use of the public key
x string
X coordinate for the elliptic curve point
y string
Y coordinate for the elliptic curve point
{
"keys": [
{
"kid": "string",
"kty": "string",
"crv": "string",
"alg": "string",
"use": "string",
"x": "string",
"y": "string"
}
]
}
Loading...