Auth0 · Schema

SetGuardianFactorPhoneMessageTypesRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
message_types array The list of phone factors to enable on the tenant. Can include `sms` and `voice`.
View JSON Schema on GitHub

JSON Schema

auth0-setguardianfactorphonemessagetypesrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SetGuardianFactorPhoneMessageTypesRequestContent",
  "title": "SetGuardianFactorPhoneMessageTypesRequestContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "message_types"
  ],
  "properties": {
    "message_types": {
      "type": "array",
      "description": "The list of phone factors to enable on the tenant. Can include `sms` and `voice`.",
      "items": {
        "$ref": "#/components/schemas/GuardianFactorPhoneFactorMessageTypeEnum"
      }
    }
  }
}