Node: Jump to Another Node
How to use the Jump node to retry steps or build manual loops inside a single workflow.
The Jump to Node node breaks out of the workflow's normal edge-following path and resumes execution directly from another chosen node in the same workflow. It's useful for retries, re-asking a question, or building manual loops.
When to use it
- Retry a question when the customer's answer wasn't valid.
- Return to an earlier point in the flow without duplicating nodes.
- Build retry logic with a counter (combined with the If node).
Configuration
- Target node: picked from the list of existing nodes in that same workflow (by its internal id).
Steps
- Drag "Jump to Another Node" from Actions.
- In the inspector, choose the target node from the list.
- Wire the Jump node at the point in the flow where the jump should fire (e.g. after detecting an invalid answer).
Example
"Ask Question" (what's your email?) → If node validates the format → if invalid, "Jump to Another Node" returns to the "Ask Question" node to retry.
Tips
- Watch out for infinite loops: pair the jump with a counter variable and an If node that breaks out after N attempts.
- If the target node gets deleted from the canvas, the jump points at a nonexistent id and fails.
Troubleshooting
- "No target_node_id specified": you haven't picked a target node in the inspector yet.
- The jump doesn't happen / the flow just continues: confirm the target node still exists in the workflow.
Related articles
-
Build your first workflow
Omnifox workflows automate your operation: a trigger starts the automation and action nodes do the work. Build a welcome message in minutes.
-
Workflow triggers catalog
Learn which events can start a workflow automatically in Omnifox.
-
Action nodes available in workflows
Discover the actions a workflow can run automatically.
-
Conditions and branching (if/then) in a workflow
Make your flows take decisions and follow different paths based on each contact data.
-
Ready-to-use workflow templates
Start your automations in minutes from prebuilt flows you can customize.