- Documentation
- Workflows
- Triggers
- Workflow triggers
Workflow triggers
Understand the trigger types that can start a TaskJuice workflow.
Triggers define when a workflow run begins. Most workflows use exactly one trigger in production.
Trigger types
| Trigger | Use it when |
|---|---|
| Form Submission | A submitted TaskJuice form should start the workflow. |
| Schedule | The workflow should run at a recurring time. |
| Webhook | Another system should start the workflow with an HTTP request. |
| App Webhook | A supported app can push events directly to TaskJuice. |
| Polling | TaskJuice needs to check a source for new records on an interval. |
| RSS | New feed entries should start runs. |
| Stream | Events from a stream should start runs. |
| Call Workflow | Another workflow should invoke this workflow. |
| Error Handler | A workflow failure should start a recovery workflow. |
For the complete node reference, see Trigger nodes.
Webhook triggers
Webhook triggers have a dedicated guide because production webhook setups usually need authentication, replay defense, deduplication, and filtering.
Was this helpful?