Auth0 · Schema

ConnectionCustomHeadersOAuth2

Custom HTTP headers sent with token exchange requests to the identity provider's token endpoint. Provided as key-value pairs (e.g., {'X-Custom-Header': 'value'}). Auth0's User-Agent header is always included by default.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-connectioncustomheadersoauth2-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionCustomHeadersOAuth2",
  "title": "ConnectionCustomHeadersOAuth2",
  "description": "Custom HTTP headers sent with token exchange requests to the identity provider's token endpoint. Provided as key-value pairs (e.g., {'X-Custom-Header': 'value'}). Auth0's User-Agent header is always included by default.",
  "type": "object",
  "maxProperties": 30,
  "additionalProperties": {
    "type": "string",
    "minLength": 1,
    "maxLength": 1024
  }
}