You: "Send a WhatsApp message to +1234567890 saying the report is ready"Claude: I'll send that message via Omni.[Uses omni_send_message tool]✓ Message sent successfully via WhatsApp!
# View recent messagesomni traces list --limit 10# Filter by instanceomni traces list --instance my-whatsapp# Filter by phone numberomni traces by-phone "+1234567890"# Get detailed traceomni traces get <trace-id>
# Receive message → AI processes → Send replyomni webhook setup --url https://yourapp.com/webhook# Your app receives messages, processes with AI,# sends responses via omni send
Notification System
Copy
# Send alerts across all platformsomni send --instance whatsapp \ --to "+list" --message "Alert: Server down"omni send --instance discord \ --channel "alerts" --message "Alert: Server down"
Marketing Campaigns
Copy
# Broadcast to subscriber listomni broadcast \ --instance my-whatsapp \ --list "subscribers.csv" \ --message "New product launch! 🚀"
Order Updates
Copy
# E-commerce order notificationsomni send \ --instance shop-whatsapp \ --to "$CUSTOMER_PHONE" \ --message "Your order #$ORDER_ID has shipped!"
# Get web-based QRomni instance qr --name my-whatsapp --web# Or regenerateomni instance disconnect --name my-whatsappomni instance qr --name my-whatsapp
Messages not sending
Check instance status:
Copy
omni instance status --name my-whatsapp# Should show: connected# If disconnected, reconnect:omni instance restart --name my-whatsapp
Evolution API errors
Verify Evolution API is running:
Copy
curl http://localhost:8080/healthdocker logs evolution-api# Restart if neededdocker restart evolution-api
Congratulations! 🎉 You’ve sent your first omnichannel message with Omni. You can now reach users on any platform!