Welcome to FlowZap, the App to diagram with Speed, Clarity and Control.

Lead capture → CRM → notify → log (Webhook → HubSpot → Slack → Sheets)

快速摘要

触发器
Webhook - Lead Submitted
步骤
8
流程
Webhook - Lead Submitted → Code - Normalize fields (name/email/company) → HTTP Request - Enrich company domain (Clearbit/API) → IF: Email + domain valid? → HubSpot - Create/Update Contact → Google Sheets - Append Row (Leads Log)
泳道
4
集成
API, Gmail, Google Sheets, HubSpot, n8n, Slack

FlowZap 代码

intake { # Intake
n1: rectangle label:"Webhook - Lead Submitted" system:"n8n"
n2: rectangle label:"Code - Normalize fields (name/email/company)" system:"n8n"
n1.handle(right) -> n2.handle(left) [label="Raw payload"]
}

enrichment { # Enrichment
n3: rectangle label:"HTTP Request - Enrich company domain (Clearbit/API)" system:"API"
n4: diamond label:"IF: Email + domain valid?" system:"n8n"
n2.handle(bottom) -> enrichment.n3.handle(top) [label="Normalized lead"]
n3.handle(right) -> n4.handle(left) [label="Enrichment result"]
}

crm { # CRM
n5: rectangle label:"HubSpot - Create/Update Contact" system:"HubSpot"
n6: rectangle label:"Google Sheets - Append Row (Leads Log)" system:"Google Sheets"
n4.handle(right) -> crm.n5.handle(left) [label="Yes"]
n5.handle(bottom) -> crm.n6.handle(top) [label="Audit log"]
}

notify { # Notify
n7: rectangle label:"Slack - Post Message (#sales)" system:"Slack"
n8: rectangle label:"Gmail - Send Welcome Email" system:"Gmail"
n5.handle(right) -> notify.n7.handle(left) [label="New contact"]
n7.handle(bottom) -> notify.n8.handle(top) [label="Send intro"]
n4.handle(bottom) -> notify.n7.handle(top) [label="No → Needs review"]
}
FlowZap - Not another Diagramming tool - Lead capture → CRM → notify → log (Webhook → HubSpot → Slack → Sheets) | n8n 工作流示例.