Skip to main content

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

TriggerUse it when
Form SubmissionA submitted TaskJuice form should start the workflow.
ScheduleThe workflow should run at a recurring time.
WebhookAnother system should start the workflow with an HTTP request.
App WebhookA supported app can push events directly to TaskJuice.
PollingTaskJuice needs to check a source for new records on an interval.
RSSNew feed entries should start runs.
StreamEvents from a stream should start runs.
Call WorkflowAnother workflow should invoke this workflow.
Error HandlerA 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?