ichabot Indeed! We've implemented exactly this using n8n and the ITFlow API. Our WordPress form submission workflow already handles the complete ticket creation flow, and the same pattern works perfectly for WhatsApp (via Twilio) or Telegram (native Bot API).
Our current workflow does:
Client/contact lookup and auto-creation
Asset registration
Ticket creation with category-based routing
Smart email confirmations (conditional content based on ticket type)
SMS notifications via Twilio
Rocket.Chat team alerts
Error handling with fallback notifications
For WhatsApp via Twilio: Same Twilio account you'd use for SMS. Just swap the trigger from WordPress webhook to Twilio WhatsApp webhook. The rest of the workflow (client lookup → ticket creation → confirmation) stays identical.
For Telegram: Use n8n's native Telegram Bot trigger instead. Parse the message, extract sender info, same ITFlow API calls. Even simpler since Telegram Bot API is free.
Two-way communication is possible:
Sanitized workflow JSON: https://fst.dbits.ca/a756e859c2cb
Just replace the placeholder values (ITFLOW_URL, ITFLOW_API_KEY, etc.) with your credentials and adjust the email template for your business.