Channels
WHATSAPP BOT
Deploy AI-powered WhatsApp chatbots with knowledge base support.
Setup
- Create a bot with
type: "whatsapp" - Set your system prompt to define the bot's persona
- Add knowledge base entries for your FAQ/product info
- Configure your WhatsApp Business API credentials in Settings
- Set the webhook URL in Meta Business Manager:
bash
https://api.callmissed.com/api/v1/webhooks/whatsappMessage Flow
bash
User sends WhatsApp message
β Meta sends POST to /api/v1/webhooks/whatsapp
β Signature verified
β Conversation found or created
β Message saved
β Conversation history + system prompt β LLM
β AI response saved
β Response sent back via WhatsApp Cloud APIBot Config
When creating a WhatsApp bot, pass channel config:
json
{
"name": "Support Bot",
"type": "whatsapp",
"system_prompt": "You are a helpful agent for Acme Corp.",
"config": {
"phone_number_id": "your_meta_phone_number_id",
"language": "en"
}
}Was this page helpful?