Skip to main content
Get JSON Web Key Set (JWKS)
curl --request GET \
  --url https://{tenantId}.api.nestmed.com/api/v1/auth/jwks
{
  "keys": [
    {
      "kty": "<string>",
      "use": "<string>",
      "kid": "<string>",
      "alg": "<string>",
      "n": "<string>",
      "e": "<string>"
    }
  ]
}

Response

200 - application/json

A JWKS document.

keys
object[]