Control flow, timing, and data inside a workflow-branch on a condition, call an external API, wait before continuing, notify someone, edit fields on the fly, or respond to a webhook caller directly.
Utilities nodes don't move files in or out of the workflow-they shape how the workflow behaves. Use them to pause execution, branch logic, reach out to other systems over HTTP, alert a person, adjust the JSON output as it passes between nodes, or send a custom response back to whoever triggered a webhook.
Pause the workflow for a set amount of time before the next node runs.
Delay
Wait before continuing
A Delay node counts against the workflow's total run time-long delays can make a run look "stuck" in Execution History until it completes.
Branch the workflow down one of two paths based on a condition you define.
Only one branch runs per execution-use this to skip a sync step entirely when a file doesn't meet your condition, instead of syncing empty or invalid data.
Call an external API from inside the workflow and use its response in later steps.
{{ variables.name }} to insert values from earlier nodes.Send an email notification at any point in the workflow-often used to confirm a run finished or flag that something needs attention.
Pair this with an If/Else node to only notify someone when a condition is met-for example, when a sync step reports failures.
Set fields on the JSON output as it passes through the workflow, and optionally store values as workflow variables for later nodes to reference.
{{ variables.name }}, including in an HTTP Request body or an If/Else condition.Return a custom HTTP response to whatever called the workflow's webhook trigger-only relevant for workflows that start with a Webhook trigger node.
If a workflow triggered by webhook never reaches this node, the caller will receive a default response once the run finishes or times out.
If a branch isn't taking the path you expect, an HTTP call is failing, or a webhook response isn't coming back correctly, our support team is here to help.
Contact Support