What This Workflow Does ⚙️
This workflow gets all workflows from a local n8n instance every hour, backs each up in Dropbox as JSON files, then updates Airtable with their status and trigger info.
It stops manual work and errors by automating backup and documentation.
The result: workflow backups are safe, and Airtable shows live workflow health.
Tools and Services Used
- n8n API: Gets workflow info from n8n running locally.
- Dropbox API: Stores workflow JSON backups and generates share links.
- Airtable API: Saves metadata records with workflow status and triggers.
- Cron node (n8n built-in): Schedules workflow runs at set times.
Input → Process → Output
Inputs
- Scheduled time triggers from Cron node.
- Workflow data pulled from n8n API.
- Existing metadata from Airtable to check before updates.
Processing Steps
- Split workflows one by one for detailed data retrieval.
- Convert JSON to binary for file upload.
- Upload backup files to Dropbox and get temporary links.
- Parse workflow nodes to find triggers and CRON schedules.
- Check if metadata record exists in Airtable.
- Update existing records or append new ones with fresh data.
- Confirm completion with conditional branches and graceful exit.
Outputs
- Backed up JSON workflow files in Dropbox folders.
- Airtable records showing workflow IDs, trigger types, schedules, and backup links.
Beginner Step-by-Step: How to Use This Workflow in n8n
1. Import Workflow
- Click the Download button on this page to get the workflow file.
- Open the n8n editor.
- Use the “Import from File” option in n8n to add the workflow.
2. Configure Credentials
- Open each node that requires connections to Dropbox, Airtable, and n8n API.
- Add your API Keys or credentials for Dropbox and Airtable.
- Update the authorization token header in HTTP Request nodes with the correct n8n API Key.
3. Update Settings
- Check and modify any IDs, folder paths, base names, table names, or formulas to match your Airtable and Dropbox setup.
- Confirm the Cron node trigger times fit your schedule.
4. Test the Workflow
- Run the workflow manually from the editor to verify each node completes without errors.
- Check that backups are uploaded and Airtable records update accordingly.
5. Activate for Production
- Enable the Cron node to let the workflow run automatically at chosen times.
- Save and activate the workflow.
- Monitor first few runs to confirm correct operation.
Note: If running n8n locally, consider a self-host n8n setup for stability and API accessibility.
Why This Workflow Exists
Manually backing up workflows and updating status is slow and full of mistakes.
This workflow stops data loss and missed updates by automating backups and syncing detailed info to Airtable.
It saves teams hours every week and gives clear monitoring of workflow triggers and schedules.
How the Workflow Works
The Cron node triggers twice every hour.
It calls n8n API via HTTP Request node to list all workflows.
A Function node breaks this list into single workflow items.
SplitInBatches node processes each workflow one by one.
Each batch makes a detailed API call to get full workflow data.
Data is converted into binary, then uploaded to Dropbox.
A POST request fetches a temporary Dropbox link for each backup file.
Another HTTP Request checks in Airtable if a record already exists for the workflow.
An IF node branches logic to update or create metadata records.
Two Function nodes parse nodes inside workflow JSON to find if there are cron triggers or any trigger nodes.
Set nodes format data for Airtable update or append.
This way, backups and metadata stay current without manual input.
Customizations ✏️
- Add email notification after each successful Dropbox upload to alert the team.
- Replace Dropbox node with Google Drive or AWS S3 for backup storage if preferred.
- Change the Cron node schedule to fit different backup frequency needs, like daily or every 30 minutes.
- Pull execution stats from n8n API and add them to Airtable for deeper monitoring.
- Filter workflows by tags before processing to handle only specific workflow sets.
Troubleshooting 🔧
Problem: No workflows returned by HTTP Request node
Check if n8n API URL and authorization token are correct and that the n8n instance is running with API access enabled.
Problem: Dropbox uploads fail due to authentication
Verify Dropbox API credentials and that the app has the proper write permissions.
Problem: Airtable records not updating or appearing
Ensure the Airtable API credentials are valid, check API limits, and confirm field names and formulas match the base schema.
Pre-Production Checklist ✅
- Verify all API endpoint URLs and authorization tokens in HTTP Request nodes.
- Test Dropbox authentication and file uploads separately.
- Check Airtable API credentials and table configurations for update and append nodes.
- Confirm the Cron node is set to correct timezone and enabled.
- Manually run the workflow step-by-step to validate correct responses at each node.
- Verify backup files upload correctly and Dropbox links are accessible.
Deployment Guide
Activate the Cron node to run the workflow automatically.
Set the workflow to Active status in n8n.
Use n8n monitoring to watch logs and errors in case of failures.
Manual triggers can test the process anytime before or after activation.
Summary
✓ Automatically fetches and backs up workflows as JSON files.
✓ Uploads backups to Dropbox and generates usable links.
✓ Checks and updates workflow metadata in Airtable with trigger info.
✓ Runs twice every hour to keep data fresh.
→ Saves hours of manual work and reduces errors.
→ Ensures workflow backups and status tracking are always current.
