AutomationFlowsWeb Scraping › Velaflow — Overdue Alert

Velaflow — Overdue Alert

VelaFlow — Overdue Alert. Uses executeCommand, httpRequest. Scheduled trigger; 5 nodes.

Cron / scheduled trigger★★☆☆☆ complexity5 nodesExecute CommandHTTP Request
Web Scraping Trigger: Cron / scheduled Nodes: 5 Complexity: ★★☆☆☆ Added:

This workflow follows the Executecommand → HTTP Request recipe pattern — see all workflows that pair these two integrations.

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 →

Download .json
{
  "name": "VelaFlow \u2014 Overdue Alert",
  "nodes": [
    {
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "cronExpression",
              "expression": "0 8,12,16,20 * * *"
            }
          ]
        }
      },
      "id": "trigger-overdue",
      "name": "Every 4h (8AM-8PM)",
      "type": "n8n-nodes-base.scheduleTrigger",
      "typeVersion": 1.2,
      "position": [
        220,
        300
      ]
    },
    {
      "parameters": {
        "command": "cd /opt/velaflow && .venv/bin/python -m brain alerts --stdout 2>&1"
      },
      "id": "check-overdue",
      "name": "Check Overdue Tasks",
      "type": "n8n-nodes-base.executeCommand",
      "typeVersion": 1,
      "position": [
        440,
        300
      ]
    },
    {
      "parameters": {
        "conditions": {
          "options": {
            "caseSensitive": false,
            "leftValue": "",
            "typeValidation": "strict"
          },
          "conditions": [
            {
              "id": "has-output",
              "leftValue": "={{ $json.stdout }}",
              "rightValue": "",
              "operator": {
                "type": "string",
                "operation": "isNotEmpty"
              }
            }
          ],
          "combinator": "and"
        }
      },
      "id": "has-overdue",
      "name": "Any Overdue?",
      "type": "n8n-nodes-base.if",
      "typeVersion": 2,
      "position": [
        660,
        300
      ]
    },
    {
      "parameters": {
        "url": "https://api.callmebot.com/whatsapp.php",
        "sendQuery": true,
        "queryParameters": {
          "parameters": [
            {
              "name": "phone",
              "value": "={{ $env.CALLMEBOT_PHONE }}"
            },
            {
              "name": "apikey",
              "value": "={{ $env.CALLMEBOT_API_KEY }}"
            },
            {
              "name": "text",
              "value": "={{ $('Check Overdue Tasks').item.json.stdout.substring(0, 3900) }}"
            }
          ]
        },
        "options": {
          "timeout": 30000
        }
      },
      "id": "whatsapp-overdue",
      "name": "WhatsApp Alert",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        880,
        200
      ],
      "onError": "continueRegularOutput"
    },
    {
      "parameters": {},
      "id": "no-op-overdue",
      "name": "No Overdue \u2014 Skip",
      "type": "n8n-nodes-base.noOp",
      "typeVersion": 1,
      "position": [
        880,
        400
      ]
    }
  ],
  "connections": {
    "Every 4h (8AM-8PM)": {
      "main": [
        [
          {
            "node": "Check Overdue Tasks",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Check Overdue Tasks": {
      "main": [
        [
          {
            "node": "Any Overdue?",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Any Overdue?": {
      "main": [
        [
          {
            "node": "WhatsApp Alert",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "No Overdue \u2014 Skip",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "settings": {
    "executionOrder": "v1",
    "timezone": "Europe/Lisbon"
  },
  "tags": [
    {
      "name": "velaflow"
    },
    {
      "name": "alerts"
    }
  ],
  "active": false
}
Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

VelaFlow — Overdue Alert. Uses executeCommand, httpRequest. Scheduled trigger; 5 nodes.

Source: https://github.com/ricardo-david-francisco/VelaFlow-public/blob/bbe67cf48c69a41e29b5c4c01b422d40d9f5d684/workflows/overdue-alert.json — original creator credit. Request a take-down →

More Web Scraping workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Web Scraping

Obsidian Tag Index Refresher. Uses executeCommand, httpRequest. Scheduled trigger; 5 nodes.

Execute Command, HTTP Request
Web Scraping

Track Changes Of Product Prices. Uses htmlExtract, functionItem, httpRequest, writeBinaryFile. Scheduled trigger; 25 nodes.

Html Extract, Function Item, HTTP Request +5
Web Scraping

This workflow automatically tracks changes on specific websites, typically in e-commerce where you want to get information about price changes. Basic knowledge of HTML and JavaScript Execute Command n

Html Extract, Function Item, HTTP Request +5
Web Scraping

Track changes of product prices. Uses htmlExtract, functionItem, httpRequest, writeBinaryFile. Scheduled trigger; 25 nodes.

Html Extract, Function Item, HTTP Request +5
Web Scraping

main_flow. Uses readWriteFile, executeCommand, httpRequest. Scheduled trigger; 18 nodes.

Read Write File, Execute Command, HTTP Request