The bot builder handles conversations. The automation builder handles logic, sequences, and integrations. This guide shows how to pass data from one to the other: a bot collects information from the user, then fires a webhook to hand that data to an automation that does the heavy lifting.
{
"customer_number": "{{whatsapp_number}}",
"name": "{{customer_name}}",
"enquiry_type": "{{selected_option}}"
}After receiving the data, the automation can send a follow-up WhatsApp message to the customer, update a CRM record, trigger a drip campaign, or call another external API — all with the data from the bot conversation.
Was this helpful? If you are stuck, message us and a real person will help — the only platform that answers you live on WhatsApp.
Ask us on WhatsAppThis walks through a simple chatbot flow that greets a customer, offers a menu, and…
A trigger is the starting point of a flow. It decides when the bot runs. Choosing the…
Message blocks send content to the customer. They cover everything from a line of text…
The Ask a Question block collects information from the customer and stores the reply…
The External API Call block used in Step 2.
Read guide →How to set up webhook triggers in the automation builder.
Read guide →The reverse: an external system triggers a bot via inbound webhook.
Read guide →