Auth0 · Schema

UpdatePhoneTemplateRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

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