Solaris AISolaris AI FlowDocs
Core Concepts

Triggers

The three trigger types that start a workflow execution.

View as Markdown

A trigger is the event that starts a workflow run. Workflows use trigger nodes to define how they start. Manual and cron triggers are limited to one per workflow. Webhook triggers can have multiple.

Trigger types

TypeHow it firesUse case
ManualYou click Run in the editor or dashboardTesting, one-off tasks
WebhookExternal service sends a POST requestReal-time reactions to events
CronRuns on a schedulePeriodic monitoring, batch jobs

Trigger availability

All trigger types and all cron cadences (including every-minute) are available to every account. The only limit is a universal safety cap of 10 active webhook workflows per account, which is not a paid tier.

When to use which

  • Manual - prototyping, debugging, human-in-the-loop flows
  • Webhook - reacting to external events (price alerts, GitHub pushes, form submissions)
  • Cron - periodic checks (portfolio snapshots, token monitoring, scheduled reports)

Next steps

On this page