Skip to main content

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

JSON Web Key Set (JWKS)

Response Headers
    Schema
      keys object[]
    • Array [
    • 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

    • ]
    Loading...