Getting Started with Bual Pro
Set up your Bual Pro account and launch your first chatbot flow in minutes.
Prerequisites
Prepare these essentials:
- A WhatsApp Business Account (verify via Meta Business Manager)
- Access to your phone for verification codes
- A web browser (Chrome recommended for best experience)
Bual Pro streamlines chatbot automation for WhatsApp and other channels. Complete registration and launch your first flow in under 10 minutes.
Sign Up and Verify Your Account
Follow these steps to create your Bual Pro account.
Create Account
Visit https://dashboard.example.com/signup and enter your email, password, and business name.
Agree to the terms and click Sign Up.
Verify Email
Check your inbox for a verification email from Bual Pro.
Click the link to confirm your email address.
Connect WhatsApp
In the dashboard, select Channels > WhatsApp.
Scan the QR code with your WhatsApp Business app or link via API.
Dashboard Walkthrough
The Bual Pro dashboard centralizes your automations. Key sections include:
Inbox
Manage conversations and replies.
Flows
Build and test chatbot flows.
Analytics
Track message delivery and engagement.
Create Your First Automation Flow
Build a simple welcome flow that greets users and collects their name.
New Flow
Navigate to Flows > Create New.
Name it Welcome Flow.
Add Nodes
Drag Trigger (on new message) and Send Message nodes.
Connect them: Trigger → Send Message.
Configure Message
Edit Send Message: "Hello! What's your name?"
Save and Publish.
Use the API to define flows programmatically.
curl -X POST https://api.example.com/v1/flows \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Welcome Flow",
"nodes": [
{
"type": "trigger",
"event": "message"
},
{
"type": "send_message",
"content": "Hello! What'\''s your name?"
}
]
}'
const response = await fetch('https://api.example.com/v1/flows', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: 'Welcome Flow',
nodes: [
{ type: 'trigger', event: 'message' },
{ type: 'send_message', content: "Hello! What's your name?" }
]
})
});
Test your flow in the Bot Simulator (Tools > Simulator). Send a test message to see the response.
Your first flow is live. Monitor it in the Inbox.
Next Steps
Last updated 3 weeks ago
Built with Documentation.AI