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": "AlphOne overdue task digest",
"nodes": [
{
"parameters": {},
"id": "3f000000-0000-4000-8000-000000000001",
"name": "Run manually",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
0,
180
]
},
{
"parameters": {
"rule": {
"interval": [
{
"field": "hours",
"triggerAtHour": 8
}
]
}
},
"id": "3f000000-0000-4000-8000-000000000002",
"name": "Every morning",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.2,
"position": [
0,
0
]
},
{
"parameters": {
"resource": "task",
"operation": "getAll",
"filterBy": "due_before",
"dueBefore": "={{ $now.toFormat('yyyy-MM-dd') }}",
"status": "open",
"limit": 200
},
"id": "3f000000-0000-4000-8000-000000000003",
"name": "Fetch overdue tasks",
"type": "n8n-nodes-alphone.alphOne",
"typeVersion": 1,
"position": [
240,
90
],
"credentials": {
"alphOneApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"jsCode": "const tasks = $input.all().map((item) => item.json);\nif (tasks.length === 0) {\n\treturn [{ json: { overdue: 0, digest: 'Nothing overdue, the list is clear.' } }];\n}\nconst lines = tasks.map((task) => `- ${task.title} (due ${task.due_on})`);\nreturn [{ json: { overdue: tasks.length, digest: `${tasks.length} task(s) overdue:\\n${lines.join('\\n')}` } }];"
},
"id": "3f000000-0000-4000-8000-000000000004",
"name": "Build the digest",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
480,
90
]
}
],
"connections": {
"Every morning": {
"main": [
[
{
"node": "Fetch overdue tasks",
"type": "main",
"index": 0
}
]
]
},
"Run manually": {
"main": [
[
{
"node": "Fetch overdue tasks",
"type": "main",
"index": 0
}
]
]
},
"Fetch overdue tasks": {
"main": [
[
{
"node": "Build the digest",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {},
"active": false
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
alphOneApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
AlphOne overdue task digest. Uses n8n-nodes-alphone. Event-driven trigger; 4 nodes.
Source: https://github.com/gopherium/n8n-nodes-alphone/blob/main/examples/overdue-task-digest.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.
Reagendamiento. Uses executeWorkflowTrigger, redis, n8n-nodes-evolution-api, dataTable. Event-driven trigger; 73 nodes.
Blotato. Uses googleSheets, @blotato/n8n-nodes-blotato. Event-driven trigger; 65 nodes.
This template is a hands-on, practical exam designed to help you master n8n Expressions—the key to accessing and manipulating data in your workflows.
This template is a hands-on, practical exam designed to test your understanding of the fundamental JSON data types. It's the perfect way to solidify your knowledge after learning the basics.
Agendamiento. Uses n8n-nodes-evolution-api, redis, dataTable, executeWorkflowTrigger. Event-driven trigger; 60 nodes.