Auth0 · Schema

CreatePhoneTemplateRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

auth0-createphonetemplaterequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreatePhoneTemplateRequestContent",
  "title": "CreatePhoneTemplateRequestContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "type": {
      "$ref": "#/components/schemas/PhoneTemplateNotificationTypeEnum"
    },
    "disabled": {
      "type": "boolean",
      "description": "Whether the template is enabled (false) or disabled (true).",
      "default": false
    },
    "content": {
      "$ref": "#/components/schemas/PhoneTemplateContent"
    }
  }
}