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": "[Order Intake] Daily CSV Upload",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "cronExpression",
"expression": "0 13 * * *"
}
]
}
},
"id": "schedule-trigger",
"name": "Daily at 1PM EST",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.2,
"position": [
100,
300
]
},
{
"parameters": {},
"id": "manual-trigger",
"name": "Manual Upload",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
100,
450
]
},
{
"parameters": {
"method": "POST",
"url": "=https://dabbahwala-latest.onrender.com/api/daily-orders/process",
"sendBody": true,
"contentType": "multipart-form-data",
"bodyParameters": {
"parameters": [
{
"name": "file",
"parameterType": "formBinaryData",
"inputDataFieldName": "data"
}
]
},
"options": {
"timeout": 300000
}
},
"id": "upload-to-api",
"name": "Upload CSV to API",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
500,
300
]
},
{
"parameters": {
"conditions": {
"options": {
"caseSensitive": true,
"leftValue": "",
"typeValidation": "strict"
},
"conditions": [
{
"id": "check-orders",
"leftValue": "={{ $json.total_orders }}",
"rightValue": 0,
"operator": {
"type": "number",
"operation": "gt"
}
}
],
"combinator": "and"
},
"options": {}
},
"id": "check-result",
"name": "Has Orders?",
"type": "n8n-nodes-base.if",
"typeVersion": 2,
"position": [
700,
300
]
},
{
"parameters": {
"method": "POST",
"url": "=https://dabbahwala-latest.onrender.com/api/intelligence/run-cycle",
"options": {
"timeout": 120000
}
},
"id": "run-intelligence",
"name": "Run Intelligence Cycle",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
900,
250
]
},
{
"parameters": {},
"id": "notify-success",
"name": "Upload Complete",
"type": "n8n-nodes-base.noOp",
"typeVersion": 1,
"position": [
1100,
250
]
},
{
"parameters": {},
"id": "notify-failure",
"name": "No Orders \u2014 Skip",
"type": "n8n-nodes-base.noOp",
"typeVersion": 1,
"position": [
900,
400
]
}
],
"connections": {
"Daily at 1PM EST": {
"main": [
[
{
"node": "Upload CSV to API",
"type": "main",
"index": 0
}
]
]
},
"Manual Upload": {
"main": [
[
{
"node": "Upload CSV to API",
"type": "main",
"index": 0
}
]
]
},
"Upload CSV to API": {
"main": [
[
{
"node": "Has Orders?",
"type": "main",
"index": 0
}
]
]
},
"Has Orders?": {
"main": [
[
{
"node": "Run Intelligence Cycle",
"type": "main",
"index": 0
}
],
[
{
"node": "Notify Failure",
"type": "main",
"index": 0
}
]
]
},
"Run Intelligence Cycle": {
"main": [
[
{
"node": "Notify Success",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
},
"tags": [
{
"name": "DabbahWala",
"id": "dabbahwala"
},
{
"name": "Orders",
"id": "orders"
},
{
"name": "Action",
"id": "tag-action"
}
]
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
[Order Intake] Daily CSV Upload. Uses httpRequest. Scheduled trigger; 7 nodes.
Source: https://github.com/vivek-dataskate/DabbahWala/blob/55df577abf41d0b89f3199f4c78662a9513accba/n8n/daily_order_upload.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.
Code Schedule. Uses httpRequest, splitInBatches, noOp, notion. Scheduled trigger; 27 nodes.
Clockify Backup Template. Uses extractFromFile, compareDatasets, stopAndError, splitOut. Scheduled trigger; 21 nodes.
Wait Splitout. Uses httpRequest, convertToFile, extractFromFile, splitOut. Scheduled trigger; 19 nodes.
Ads Machine — Daily Ad Poller. Uses airtable, httpRequest. Scheduled trigger; 13 nodes.
Splitout Filter. Uses splitOut, stickyNote, httpRequest, scheduleTrigger. Scheduled trigger; 8 nodes.