Auth0 · Schema
PhoneTemplate
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). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PhoneTemplate",
"title": "PhoneTemplate",
"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
}
}
}