Auth0 · Schema

CreatePhoneProviderSendTestRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
to string The recipient phone number to receive a given notification.
delivery_method object
View JSON Schema on GitHub

JSON Schema

auth0-createphoneprovidersendtestrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreatePhoneProviderSendTestRequestContent",
  "title": "CreatePhoneProviderSendTestRequestContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "to"
  ],
  "properties": {
    "to": {
      "type": "string",
      "description": "The recipient phone number to receive a given notification.",
      "minLength": 1,
      "maxLength": 16
    },
    "delivery_method": {
      "$ref": "#/components/schemas/PhoneProviderDeliveryMethodEnum"
    }
  }
}