Auth0 · Schema

ResetPhoneTemplateResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string
channel string
customizable boolean
tenant string
content object
type object
disabled boolean Whether the template is enabled (false) or disabled (true).
View JSON Schema on GitHub

JSON Schema

auth0-resetphonetemplateresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResetPhoneTemplateResponseContent",
  "title": "ResetPhoneTemplateResponseContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "content",
    "disabled",
    "id",
    "type"
  ],
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "channel": {
      "type": "string"
    },
    "customizable": {
      "type": "boolean"
    },
    "tenant": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "content": {
      "$ref": "#/components/schemas/PhoneTemplateContent"
    },
    "type": {
      "$ref": "#/components/schemas/PhoneTemplateNotificationTypeEnum"
    },
    "disabled": {
      "type": "boolean",
      "description": "Whether the template is enabled (false) or disabled (true).",
      "default": false
    }
  }
}