Auth0 · Schema

CreatePhoneTemplateTestNotificationRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
to string Destination of the testing phone notification
delivery_method object Medium to use to send the notification
View JSON Schema on GitHub

JSON Schema

auth0-createphonetemplatetestnotificationrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreatePhoneTemplateTestNotificationRequestContent",
  "title": "CreatePhoneTemplateTestNotificationRequestContent",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "to"
  ],
  "properties": {
    "to": {
      "type": "string",
      "description": "Destination of the testing phone notification",
      "minLength": 1,
      "maxLength": 16
    },
    "delivery_method": {
      "$ref": "#/components/schemas/PhoneProviderDeliveryMethodEnum",
      "description": "Medium to use to send the notification"
    }
  }
}