Auth0 · Schema

FlowActionTwilioSendSmsParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

auth0-flowactiontwiliosendsmsparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionTwilioSendSmsParams",
  "title": "FlowActionTwilioSendSmsParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "connection_id",
    "from",
    "to",
    "message"
  ],
  "properties": {
    "connection_id": {
      "type": "string",
      "maxLength": 30,
      "format": "flows-vault-connections-id"
    },
    "from": {
      "type": "string",
      "maxLength": 50
    },
    "to": {
      "type": "string",
      "maxLength": 50
    },
    "message": {
      "type": "string",
      "maxLength": 1500
    }
  }
}