This feature allows you to pass data from your bot flow to the automation builder using a webhook, enabling advanced workflow processing.
Steps to Configure #
1. Create Webhook in Automation Builder #
- Go to Automation Builder → Create Workflow
- Click on the + icon and select Webhook
- Choose Custom Webhook as the trigger
- Enter a Webhook Title
- Click on Generate Hook
- Copy the generated Webhook URL
2. Configure Bot Builder #
- Go to Bot Builder and open your bot flow
- Add a new node → Automation App → External API Call
- Select request method as POST
- Paste the Webhook URL
3. Add JSON Body #
- Set Body Type as JSON
- Enter the JSON structure and map required fields Example:
filename.js
Copy to clipboard
{
"customer_number": "{{whatsapp_number}}",
"id": "1"
}
4. Capture Data in Automation #
- Go back to Automation Builder
- Click on Capture Incoming Webhook
- Run and save the workflow
5. Verify Data #
- Use Show Received Data to verify incoming data
- Once live data is received, it will appear automatically