Lead capture → CRM → notify → log (Webhook → HubSpot → Slack → Sheets)
n8n Workflows
n8n workflow example as FlowZap Code (with .fz download).
An n8n workflow automation that turns Telegram into a personal expense tracker. Users send /expense commands with amount, category, and notes; the workflow parses and validates the input, appends valid entries to a Google Sheets expense ledger, and replies with a confirmation receipt. Invalid messages trigger a helpful usage guide reply directly in the Telegram chat.
chat { # Chat
n1: rectangle label:"Telegram Trigger - New Message" system:"Telegram"
n2: rectangle label:"Code - Parse /expense amount category note" system:"n8n"
n1.handle(right) -> n2.handle(left) [label="Message"]
}
validate { # Validate
n3: diamond label:"IF: Parse successful?" system:"n8n"
n2.handle(right) -> validate.n3.handle(left) [label="Parsed fields"]
}
ledger { # Ledger
n4: rectangle label:"Google Sheets - Append Expense Row" system:"Google Sheets"
n5: rectangle label:"Telegram - Reply Confirmation" system:"Telegram"
validate.n3.handle(right) -> ledger.n4.handle(left) [label="Yes"]
ledger.n4.handle(right) -> ledger.n5.handle(left) [label="Receipt"]
}
errors { # Errors
n6: rectangle label:"Telegram - Reply Usage Help" system:"Telegram"
validate.n3.handle(bottom) -> errors.n6.handle(top) [label="No → Help"]
}Visualize your current n8n JSON with our n8n Visualizer
n8n Workflows
n8n workflow example as FlowZap Code (with .fz download).
n8n Workflows
n8n workflow example as FlowZap Code (with .fz download).
n8n Workflows
n8n workflow example as FlowZap Code (with .fz download).
n8n Workflows
n8n workflow example as FlowZap Code (with .fz download).
n8n Workflows
n8n workflow example as FlowZap Code (with .fz download).
n8n Workflows
n8n workflow example as FlowZap Code (with .fz download).