Schedule Types
Schedules are triggers that create Tasks on a recurring basis using either
cron
or rrule
syntax.To schedule Tasks to be created periodically using the cron format, specify the
cron
when creating a Schedule using the cron format.For example, a
cron
of 0 * * * *
will run every hour at minute 0. For more examples and handy human-to-cron-to-human calculators, visit cronprompt.com and crontab.guru.
To schedule Tasks to be created periodically using the iCal RRULE format, specify the
rrule
when creating a Schedule using the iCal RRULE format.For example, a
rrule
of RRULE:FREQ=WEEKLY;BYDAY=TU,TH
will run every Tuesday and Thursday.Note that Mergent does not support
COUNT
at this time.For more examples and a handy rrule-to-human calculator, visit https://jakubroztocil.github.io/rrule.
Last modified 5mo ago