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": "Weekly Report Digest",
"notes": "Sample n8n export that requests a weekly report draft and sends the email-ready summary.",
"nodes": [
{
"id": "schedule-trigger",
"name": "Weekly Schedule",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [
320,
300
],
"parameters": {
"mode": "everyWeek",
"weekday": "monday",
"hour": 8,
"minute": 0
}
},
{
"id": "prepare-week-range",
"name": "Prepare Week Range",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
510,
300
],
"parameters": {
"jsCode": "const now = new Date();\nconst weekEnd = now.toISOString().slice(0, 10);\nconst weekStartDate = new Date(now);\nweekStartDate.setDate(now.getDate() - 6);\nconst weekStart = weekStartDate.toISOString().slice(0, 10);\nreturn [{ json: { week_start: weekStart, week_end: weekEnd } }];"
}
},
{
"id": "post-weekly-report",
"name": "POST Weekly Report Request",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
780,
300
],
"parameters": {
"method": "POST",
"url": "={{$env.JOBOPS_API_BASE_URL}}/api/n8n/weekly-report",
"authentication": "none",
"sendHeaders": true,
"headerParametersUi": {
"parameter": [
{
"name": "Content-Type",
"value": "application/json"
},
{
"name": "X-N8N-Webhook-Secret",
"value": "={{$env.N8N_WEBHOOK_SECRET}}"
}
]
},
"sendBody": true,
"specifyBody": "json",
"jsonBody": "={{ JSON.stringify({ week_start: $json.week_start, week_end: $json.week_end }) }}"
}
}
],
"connections": {
"Weekly Schedule": {
"main": [
[
{
"node": "Prepare Week Range",
"type": "main",
"index": 0
}
]
]
},
"Prepare Week Range": {
"main": [
[
{
"node": "POST Weekly Report Request",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
},
"active": false
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Weekly Report Digest. Uses httpRequest. Scheduled trigger; 3 nodes.
Source: https://github.com/Taleef7/jobops-copilot/blob/main/workflows/n8n/exports/weekly-report.workflow.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.
Birthday Automation - Production (Fixed). Uses stopAndError, httpRequest, emailSend, bannerbear. Scheduled trigger; 86 nodes.
This template runs two scheduled workflows to govern Microsoft Entra ID (Azure AD) guest accounts by detecting stale users via Microsoft Graph, staging deletions in SharePoint with a 72-hour window, n
Jira-Allure-Auto-Qa. Uses httpRequest, jira. Scheduled trigger; 68 nodes.
Spotify-Sync-Surrealdb-V1. Uses httpRequest, n8n-nodes-surrealdb, spotify. Scheduled trigger; 62 nodes.
As n8n instances scale, teams often lose track of sub-workflows—who uses them, where they are referenced, and whether they can be safely updated. This leads to inefficiencies like unnecessary copies o