Create New Trigger

Back to Triggers
Trigger Configuration
A descriptive name for this trigger
Unique identifier for the trigger
The workflow to execute when this trigger fires
The type of trigger that will start the workflow
Map trigger event data to workflow input parameters (optional)
Cancel
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 minutes
  • 0 0 * * * * - Every hour
  • 0 0 9 * * MON-FRI - 9 AM weekdays
Input Mapping:
{
  "keyword": "payload.search_term",
  "max_results": "headers.X-Max-Results"
}