AutomationFlowsWeb Scraping › Daily Catat Reminder (14:00 & 20:00)

Daily Catat Reminder (14:00 & 20:00)

Daily Catat Reminder (14:00 & 20:00). Uses httpRequest. Scheduled trigger; 4 nodes.

Cron / scheduled trigger★★★★☆ complexity4 nodesHTTP Request
Web Scraping Trigger: Cron / scheduled Nodes: 4 Complexity: ★★★★☆ Added:

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": "Daily Catat Reminder (14:00 & 20:00)",
  "nodes": [
    {
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "cronExpression",
              "expression": "0 14 * * *"
            }
          ]
        }
      },
      "id": "schedule-siang",
      "name": "Schedule 14:00 WIB",
      "type": "n8n-nodes-base.scheduleTrigger",
      "typeVersion": 1.1,
      "position": [
        240,
        200
      ],
      "notes": "Penting: pastikan timezone n8n di-set ke Asia/Jakarta. Settings \u2192 Personal \u2192 Time Zone."
    },
    {
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "cronExpression",
              "expression": "0 20 * * *"
            }
          ]
        }
      },
      "id": "schedule-malam",
      "name": "Schedule 20:00 WIB",
      "type": "n8n-nodes-base.scheduleTrigger",
      "typeVersion": 1.1,
      "position": [
        240,
        400
      ]
    },
    {
      "parameters": {
        "jsCode": "// Tentukan slot berdasarkan jam saat ini\nconst now = new Date();\nconst hour = now.getHours();\nconst slot = hour < 18 ? 'daily_reminder_siang' : 'daily_reminder_malam';\n\nreturn [{ json: { mode: slot } }];"
      },
      "id": "determine-slot",
      "name": "Tentukan Slot",
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        460,
        300
      ]
    },
    {
      "parameters": {
        "method": "POST",
        "url": "={{ $env.DASHBOARD_URL }}/api/push/broadcast",
        "authentication": "none",
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "Authorization",
              "value": "=Bearer {{ $env.INTERNAL_API_TOKEN }}"
            },
            {
              "name": "Content-Type",
              "value": "application/json"
            }
          ]
        },
        "sendBody": true,
        "specifyBody": "json",
        "jsonBody": "={\n  \"mode\": \"{{ $json.mode }}\"\n}",
        "options": {
          "timeout": 60000
        }
      },
      "id": "broadcast-push",
      "name": "Broadcast Push (siang/malam)",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        680,
        300
      ],
      "notes": "Backend dashboard yang handle:\n- Filter user dengan push_daily_reminder=true\n- Filter user status=aktif\n- Dedup via push_notification_log (gak akan kirim 2x untuk slot yang sama)\n- Kirim push notif paralel"
    }
  ],
  "connections": {
    "Schedule 14:00 WIB": {
      "main": [
        [
          {
            "node": "Tentukan Slot",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Schedule 20:00 WIB": {
      "main": [
        [
          {
            "node": "Tentukan Slot",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Tentukan Slot": {
      "main": [
        [
          {
            "node": "Broadcast Push (siang/malam)",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "settings": {
    "executionOrder": "v1"
  },
  "tags": [
    {
      "name": "nayyira"
    },
    {
      "name": "push"
    },
    {
      "name": "daily"
    }
  ]
}
Pro

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

About this workflow

Daily Catat Reminder (14:00 & 20:00). Uses httpRequest. Scheduled trigger; 4 nodes.

Source: https://github.com/Hydraa57/nayyira-dashboard/blob/dce4b6d72f6587acf3bb3fb333c1271de4601175/n8n-workflows/daily_catat_reminder.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

Birthday Automation - Production (Fixed). Uses stopAndError, httpRequest, emailSend, bannerbear. Scheduled trigger; 86 nodes.

Stop And Error, HTTP Request, Email Send +1
Web Scraping

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

Microsoft SharePoint, Microsoft Teams, Microsoft Entra +1
Web Scraping

Jira-Allure-Auto-Qa. Uses httpRequest, jira. Scheduled trigger; 68 nodes.

HTTP Request, Jira
Web Scraping

Spotify-Sync-Surrealdb-V1. Uses httpRequest, n8n-nodes-surrealdb, spotify. Scheduled trigger; 62 nodes.

HTTP Request, N8N Nodes Surrealdb, Spotify
Web Scraping

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

HTTP Request, n8n, N8N Trigger +1