GET
/
sdk
/
{environmentId}
/
.well-known
/
jwks
curl --request GET \
  --url https://app.dynamicauth.com/api/v0/sdk/{environmentId}/.well-known/jwks
{
  "keys": [
    {
      "kid": "<string>",
      "alg": "<string>",
      "kty": "<string>",
      "use": "<string>",
      "e": "<string>",
      "n": "<string>"
    }
  ]
}

Path Parameters

environmentId
string
required

ID of the environment

Required string length: 36
Example:

"95b11417-f18f-457f-8804-68e361f9164f"

Response

200
application/json
public key with standard jwks format
keys
object[]
required

Contains a valid JWKS representation of the public key for this environment. For more information, see: https://auth0.com/blog/navigating-rs256-and-jwks/