Learn how to configure different types of triggers to start your workflows.
Run workflows at specific times or intervals
Trigger from external HTTP requests
Trigger when emails are received
Trigger based on calendar events
Trigger workflows manually
Here's an example of configuring a schedule trigger to run every day at 9 AM:
{
"type": "schedule",
"config": {
"frequency": "daily",
"time": "09:00",
"timezone": "Europe/Paris"
}
}