Auth0 · Schema

FlowActionTwilioMakeCallParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

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