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

Plan restrictions

FeatureFreeProUltra
Manual triggersYesYesYes
Cron triggersDaily/Weekly onlyAll frequenciesAll frequencies
Webhook triggers1 active workflowUnlimitedUnlimited

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