Create New Trigger
Back to TriggersTrigger Configuration
Trigger Types
Webhook
Triggered by HTTP requests to a specific endpoint. Useful for integrating with external systems.
Scheduled
Triggered at specific times using cron expressions. Perfect for recurring tasks.
Event
Triggered by system events like workflow completions or custom events.
Dependency
Triggered when a specific workflow completes. Create workflow chains.
Examples
Webhook URL:
/webhooks/default/api/webhook/my-trigger
Cron Examples:
0 */5 * * * *- Every 5 minutes0 0 * * * *- Every hour0 0 9 * * MON-FRI- 9 AM weekdays
Input Mapping:
{
"keyword": "payload.search_term",
"max_results": "headers.X-Max-Results"
}