Cron

The Cron node triggers a workflow on a schedule using a cron expression. No user input is required—the workflow runs automatically at the specified times.

The Cron node triggers a workflow on a schedule using a cron expression. No user input is required—the workflow runs automatically at the specified times.

Overview

PropertyValue
Inputs0
Outputs1
OutputTrigger event (no payload)

Parameters

ParameterTypeDescription
labelstringNode identifier (camelCase)
cronExpressionstringCron expression (e.g. 0 * * * * for hourly)

Cron Expression Format

Standard 5-field cron: minute hour day-of-month month day-of-week

FieldValuesExample
Minute0–590 = at minute 0
Hour0–23* = every hour
Day of month1–31* = every day
Month1–12* = every month
Day of week0–7 (0 and 7 = Sunday)* = every day

Common examples:

  • 0 * * * * – every hour
  • 0 0 * * * – daily at midnight
  • */15 * * * * – every 15 minutes
  • 0 9 * * 1-5 – weekdays at 9:00

Example

{
  "type": "cron",
  "data": {
    "label": "hourlyCheck",
    "cronExpression": "0 * * * *"
  }
}