Auth0 · Schema

FlowActionAuth0SendSmsParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
from string
to string
message string
custom_vars object
View JSON Schema on GitHub

JSON Schema

auth0-flowactionauth0sendsmsparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionAuth0SendSmsParams",
  "title": "FlowActionAuth0SendSmsParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "to",
    "message"
  ],
  "properties": {
    "from": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "to": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "message": {
      "type": "string",
      "minLength": 1,
      "maxLength": 1024
    },
    "custom_vars": {
      "$ref": "#/components/schemas/FlowActionAuth0SendSmsParamsCustomVars"
    }
  }
}