Auth0 · Schema

ConnectionTokenEndpointAuthMethodEnum

Authentication method used at the identity provider's token endpoint. 'client_secret_post' sends credentials in the request body; 'private_key_jwt' uses a signed JWT assertion for enhanced security.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-connectiontokenendpointauthmethodenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionTokenEndpointAuthMethodEnum",
  "title": "ConnectionTokenEndpointAuthMethodEnum",
  "type": [
    "string",
    "null"
  ],
  "description": "Authentication method used at the identity provider's token endpoint. 'client_secret_post' sends credentials in the request body; 'private_key_jwt' uses a signed JWT assertion for enhanced security.",
  "enum": [
    "client_secret_post",
    "private_key_jwt"
  ],
  "x-merge-priority": -5
}