Integrations: Overview
The Verboo platform offers native integrations with dozens of systems. All integrations are configured as actions inside generative triggers (for assistants) or as actions on flow nodes (for FLOW chatbots).
Integration Map
Verboo Platform
│
├── 🌐 WEBHOOK → Any custom REST API
├── 📱 NATIVE → Advanced WhatsApp messages
├── 👤 CRM → Contact management
├── 📅 GOOGLE_CALENDAR → Scheduling
├── 🧠 KNOWLEDGE → Knowledge base
├── 📊 META_ADS → Conversion pixel
├── 💬 CHAT_INTEGRATION → Human handoff
├── 🛍️ CATALOG → Product catalog
├── 🏥 FEEGOW → Clinical management (24 actions)
└── 📲 WhatsApp Channels
├── Z_API
├── MY_ZAP
└── EVOLUTIONFull Action Table
| Integration | Action | Description |
|---|---|---|
| WEBHOOK | : | Custom HTTP request (GET/POST/PUT/DELETE) |
| NATIVE | SEND_TEXT |
Simple text |
| NATIVE | SEND_BUTTON |
Message with buttons |
| NATIVE | SEND_LIST |
Message with option list |
| NATIVE | SEND_IMAGE |
Image with caption |
| NATIVE | SEND_AUDIO |
Audio file |
| NATIVE | SEND_FILE |
Document/file |
| NATIVE | GEN_AUDIO |
Generates audio via TTS (synthetic voice) |
| NATIVE | TRANSFER_ASSISTANT |
Transfers to another assistant |
| CRM | UPSERT_CONTACT |
Creates or updates contact |
| GOOGLE_CALENDAR | CHECK |
Checks availability |
| GOOGLE_CALENDAR | LIST |
Lists events |
| GOOGLE_CALENDAR | SCHEDULE |
Creates appointment |
| KNOWLEDGE | SEARCH |
Manual knowledge base search |
| META_ADS | SEND_EVENT |
Fires pixel event |
| CHAT_INTEGRATION | CHANGE_STATUS |
Changes service status |
| CHAT_INTEGRATION | SUMMARIZE |
Generates conversation summary |
| CATALOG | SEARCH |
Search products |
| CATALOG | ADD_CART |
Add to cart |
| CATALOG | REMOVE_CART |
Remove from cart |
| CATALOG | GET_CART |
Get cart |
| Z_API | SET_TAG |
Set tag on contact |
| Z_API | RESET_SESSION |
Reset WhatsApp session |
| MY_ZAP | SET_TAG |
Set tag |
| MY_ZAP | SEND_FILE |
Send file |
| MY_ZAP | SEND_IMAGE |
Send image |
| MY_ZAP | SELF_TEXT_MESSAGE |
Internal message |
| MY_ZAP | RESET_SESSION |
Reset session |
| EVOLUTION | SET_TAG |
Set tag |
| EVOLUTION | RESET_SESSION |
Reset session |
| EVOLUTION | SEND_FILE |
Send file |
| EVOLUTION | SEND_IMAGE |
Send image |
| EVOLUTION | SELF_TEXT_MESSAGE |
Internal message |
| EVOLUTION | MARK_UNREAD |
Mark conversation as unread |
| FEEGOW | 24 subtypes | Patients, appointments, clinical schedule |
When to use each integration
Use WEBHOOK when:
- You need to connect to a proprietary or third-party system
- The destination system has a REST API
- You need maximum flexibility in request/response
Use NATIVE when:
- You want to send messages with special formatting (buttons, lists)
- You need to generate audio via text-to-speech
- You want to transfer the user to another agent
Use CRM when:
- You need to automatically register or update leads
- You want to capture contact data during the conversation
Use GOOGLE_CALENDAR when:
- Offering appointments directly in the conversation
- Checking time slot availability in real time
Use META_ADS when:
- Registering lead conversions for Meta campaigns
- Firing custom events on the tracking pixel
Use FEEGOW when:
- Operating in clinics or medical offices
- Needing full medical scheduling with patient records
Variables in Integrations
All integrations that accept text parameters support variables. See the full reference at Variables ($).
General rule:
- For literal text fields (e.g.: NATIVE SEND_TEXT body): use
$paramNameand$client_data_key - For structured field values: use the parameter name directly (without
$)
Important exception: In Webhook actions, NATIVE SEND_TEXT, NATIVE GEN_AUDIO, and observation fields in Feegow, use
$variableNamewith the$prefix.