What Workflows Do
Workflows execute automated steps when specific events occur. Instead of writing webhook handlers, you define conditions and actions through configuration.Structure
| Component | Description |
|---|---|
| Trigger | Event that starts the workflow |
| Conditions | Rules that determine if workflow runs |
| Steps | Actions to execute |
Supported Triggers
integrated_account:active- Account connected and ready
Use Cases
Auto-Start Sync on Connection
When a customer connects their ShipHero account, automatically start syncing orders:- Trigger:
integrated_account:active - Condition:
integration.name = 'shiphero' - Action: Run sync job

