Learn about the different events that can start your workflows, from schedules to webhooks.
interval
, cron
, daily
, weekly
, monthly
interval
and cron
types.interval
: A string like “5 minutes” or “1 hour”.cron
: A standard cron expression like 0 9 * * *
(every day at 9 AM).POST
request to this URL, the workflow will start. This is ideal for real-time integrations.
POST
request, along with all HTTP headers, will be available as the output of this trigger node.
*
) are supported. For example, user.created
or payment.*
. You can listen for multiple patterns by separating them with a comma, but they must share the same root category (e.g., user.created,user.updated
is valid, but user.created,payment.succeeded
is not).