Triggers determine how and when your workflow starts. Choosing the right trigger is one of the most important decisions in workflow design.
beginner
Chapter 3: Understanding Workflows2. Trigger Types Explained
Explore all trigger types and when to use each.
20m Lesson 2 of 6
Code Examples
Schedule Trigger — Cron Examples
text
Every minute: * * * * *
Every hour: 0 * * * *
Daily at 9am: 0 9 * * *
Weekdays at 8am: 0 8 * * 1-5
First of month: 0 0 1 * *Pro Tips
- 💡Webhook triggers give you a unique URL — use it to receive data from external systems
- 💡Schedule triggers run in the timezone configured in your environment
Comprehension Quiz
Answer 2 of 2 correctly to unlock lesson completion.
1. Which trigger type uses cron expressions?
2. What does a Webhook Trigger provide?
Pass the quiz above to unlock lesson completion