Auth0 · Schema

FlowActionWhatsappSendMessageParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string
sender_id string
recipient_number string
type string
payload object
View JSON Schema on GitHub

JSON Schema

auth0-flowactionwhatsappsendmessageparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionWhatsappSendMessageParams",
  "title": "FlowActionWhatsappSendMessageParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "connection_id",
    "sender_id",
    "recipient_number",
    "type",
    "payload"
  ],
  "properties": {
    "connection_id": {
      "type": "string",
      "maxLength": 30,
      "format": "flows-vault-connections-id"
    },
    "sender_id": {
      "type": "string"
    },
    "recipient_number": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "AUDIO",
        "CONTACTS",
        "DOCUMENT",
        "IMAGE",
        "INTERACTIVE",
        "LOCATION",
        "STICKER",
        "TEMPLATE",
        "TEXT"
      ]
    },
    "payload": {
      "$ref": "#/components/schemas/FlowActionWhatsappSendMessageParamsPayload"
    }
  }
}