The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "Scheduled Backup",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "hours",
"hoursInterval": 24
}
]
}
},
"id": "schedule-node",
"name": "Daily Schedule",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"url": "${BACKUP_API_URL}",
"authentication": "genericCredentialType",
"genericAuthType": "httpBasicAuth",
"sendQuery": true,
"queryParameters": {
"parameters": [
{
"name": "source",
"value": "n8n-backup"
},
{
"name": "timestamp",
"value": "={{$now.toISO()}}"
}
]
},
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "X-Backup-Type",
"value": "automated"
}
]
},
"options": {}
},
"id": "http-node",
"name": "Trigger Backup",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
450,
300
]
},
{
"parameters": {
"values": {
"string": [
{
"name": "status",
"value": "=Backup completed at {{$now.toISO()}}"
},
{
"name": "response",
"value": "={{JSON.stringify($json)}}"
}
]
},
"options": {}
},
"id": "set-node",
"name": "Format Response",
"type": "n8n-nodes-base.set",
"typeVersion": 3,
"position": [
650,
300
]
}
],
"connections": {
"Daily Schedule": {
"main": [
[
{
"node": "Trigger Backup",
"type": "main",
"index": 0
}
]
]
},
"Trigger Backup": {
"main": [
[
{
"node": "Format Response",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1",
"saveManualExecutions": true,
"callerPolicy": "workflowsFromSameOwner",
"errorWorkflow": ""
},
"staticData": null,
"tags": [
"backup",
"scheduled"
],
"triggerCount": 1,
"updatedAt": "2024-01-01T00:00:00.000Z",
"versionId": null
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Scheduled Backup. Uses httpRequest. Scheduled trigger; 3 nodes.
Source: https://github.com/pvdyck/n8n-tdd-framework/blob/1417ba0de755ef06ca873baee44b2192f5c42c5c/templates/scheduled-backup.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Obsidian Tag Index Refresher. Uses executeCommand, httpRequest. Scheduled trigger; 5 nodes.
E-Décor - Support Client. Uses httpRequest, emailSend. Scheduled trigger; 5 nodes.
77STF — Morning Digest (08:30 pon-pt). Uses httpRequest. Scheduled trigger; 5 nodes.