JSON Web Key Set
GET
/v1/identity/jwks
const url = 'http://localhost:8693/v1/identity/jwks';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8693/v1/identity/jwksReturns the public signing keys for verifying WIMSE JWTs issued by this unit. During key rotation, multiple keys may be active.
Responses
Section titled “ Responses ”JWKS document
Media type application/json
object
keys
Array<object>
JWK (RFC 7517)
object
Example
{ "keys": [ { "kty": "RSA", "kid": "starfly-dev-1", "alg": "RS256", "use": "sig", "n": "0vx7agoebG...", "e": "AQAB" } ]}