Inbox triage → route → log (Gmail → IF → Notion/Zendesk/Slack → Sheets)
n8n Workflows
n8n workflow example as FlowZap Code (with .fz download).
An n8n scheduled workflow that performs nightly backups of a Notion knowledge base by fetching all recently updated pages, converting them to a markdown bundle with metadata, and uploading the archive to Google Drive. A Slack notification confirms the backup status, ensuring your team's documentation is always recoverable and version-tracked.
trigger { # Trigger
n1: rectangle label:"Schedule Trigger - Nightly backup" system:"n8n"
n2: rectangle label:"Notion - Fetch Updated Pages" system:"Notion"
n1.handle(right) -> n2.handle(left) [label="Start backup"]
}
build { # Build
n3: rectangle label:"Code - Build markdown bundle + metadata" system:"n8n"
n4: rectangle label:"Google Drive - Upload Backup File" system:"Google Drive"
trigger.n2.handle(right) -> build.n3.handle(left) [label="Pages"]
build.n3.handle(right) -> build.n4.handle(left) [label="Archive"]
}
notify { # Notify
n5: rectangle label:"Slack - Post Backup Status" system:"Slack"
build.n4.handle(right) -> notify.n5.handle(left) [label="Completed"]
}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).