Stream Kit Docs
API ReferenceCore

Cron

Core trigger: core:core:cron

Cron

Trigger IDcore:core:cron
PluginCore
CategoryCore

Variables

Copy variables into handler fields using {variableName} syntax.

{kind}{firedAt}{scheduledAt}{cronExpression}{date}{time}{repeat}{weekday}
NameTypeDescription
{kind}
'cron' | 'scheduled'

Schedule kind (`cron` or `scheduled`).

Example: cron

{firedAt}
string

ISO timestamp when the schedule fired.

{scheduledAt}
string

ISO timestamp when the event was scheduled.

{cronExpression}
string

Cron expression for recurring schedules.

Example: 0 9 * * *

{date}
string

Scheduled date (`YYYY-MM-DD`) for one-shot schedules.

{time}
string

Scheduled time (`HH:mm`) for one-shot schedules.

{repeat}
object

Repeat mode for scheduled triggers (`once`, `daily`, `weekly`).

{weekday}
string

Weekday used by weekly schedules.

Conditions

ConditionDescription
Cron expressionCron expression that must match for the trigger to fire.

On this page