Auth0 · Schema

GetGuardianFactorPhoneTemplatesResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
enrollment_message string Message sent to the user when they are invited to enroll with a phone number.
verification_message string Message sent to the user when they are prompted to verify their account.
View JSON Schema on GitHub

JSON Schema

auth0-getguardianfactorphonetemplatesresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetGuardianFactorPhoneTemplatesResponseContent",
  "title": "GetGuardianFactorPhoneTemplatesResponseContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "enrollment_message",
    "verification_message"
  ],
  "properties": {
    "enrollment_message": {
      "type": "string",
      "description": "Message sent to the user when they are invited to enroll with a phone number.",
      "default": "{{code}} is your verification code for {{tenant.friendly_name}}. Please enter this code to verify your enrollment."
    },
    "verification_message": {
      "type": "string",
      "description": "Message sent to the user when they are prompted to verify their account.",
      "default": "{{code}} is your verification code for {{tenant.friendly_name}}"
    }
  }
}