Block 1 - Webhook – Incoming Request
- Type / Role
- n8n-nodes-base.webhook - webhook
- Config choices
- Version 1.1
This workflow is provided as-is. Please review and test before using in production.
Public Transport Delay Tracker with Microsoft Teams and Todoist ️ COMMUNITY TEMPLATE DISCLAIMER: This is a community contributed template that uses ScrapeGraphAI (a community node). Please ensure ...
n8n-nodes-base.webhook, n8n-nodes-base.code, n8n-nodes-base.splitinbatches, n8n-nodes-scrapegraphai.scrapegraphai, n8n-nodes-base.if, n8n-nodes-base.set, n8n-nodes-base.microsoftteams, n8n-nodes-base.todoist
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by vinci-king-01.
Original n8n.io source⚠️ COMMUNITY TEMPLATE DISCLAIMER: This is a community-contributed template that uses ScrapeGraphAI (a community node). Please ensure you have the ScrapeGraphAI community node installed in your n8n instance before using this template.
This workflow continuously monitors public-transportation websites and apps for real-time schedule changes and delays, then posts an alert to a Microsoft Teams channel and creates a follow-up task in Todoist. It is ideal for commuters or travel coordinators who need instant, actionable updates about transit disruptions.
| Resource | What you need |
|---|---|
| Teams Channel | Create a channel → Add “Incoming Webhook” → copy the URL |
| Todoist Project | Create “Transit Alerts” project and note its Project ID |
| Transit URLs/APIs | Confirm the URLs/pages contain the schedule & delay elements |
This workflow continuously monitors public-transportation websites and apps for real-time schedule changes and delays, then posts an alert to a Microsoft Teams channel and creates a follow-up task in Todoist. It is ideal for commuters or travel coordinators who need instant, actionable updates about transit disruptions.
Setup Time: 15–20 minutes
const MAX_DELAY_MINUTES = 5; as needed.// In the Code node
const message = `⚠️ Delay Alert:
Route: ${item.route}
Expected: ${item.scheduled}
New Time: ${item.newTime}
Delay: ${item.delay} min
Link: ${item.url}`;
return [{ json: { message } }];
// Duplicate the Microsoft Teams node and reference a different credential
items.forEach(item => {
item.json.webhookUrl = $node["Set"].json["secondaryChannelWebhook"];
});
return items;
The workflow outputs structured JSON data:
{
"route": "Blue Line",
"scheduled": "2024-12-01T14:25:00Z",
"newTime": "2024-12-01T14:45:00Z",
"delay": 20,
"status": "Delayed",
"url": "https://transit.example.com/blue-line/status"
}
Pro Tips:
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Track & alert public transport delays using ScrapeGraphAI, Teams and Todoist |
|---|---|
| Complexity | advanced |
| Nodes | 16 |
| Categories | Personal Productivity, AI Summarization |
| Author | vinci-king-01 |
| Published | 22 Dec 2025 |
Use the JSON export at /data/workflows/12010/12010.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Public Transport Delay Tracker with Microsoft Teams and Todoist ️ COMMUNITY TEMPLATE DISCLAIMER: This is a community contributed template that uses ScrapeGraphAI (a community node). Please ensure ...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Personal Productivity, AI Summarization use case.