Continue Loop
Continue Loop abandons the rest of the current iteration and moves on to the next one. The
loop itself keeps running.
It takes no configuration.
When to use it
Combined with a Conditional, it is the clean way to skip records you do not
want to process, without nesting the remainder of the loop inside a conditional branch:
- Skipping rows that fail a validation check
- Ignoring records already processed on an earlier run
- Passing over entries missing a field a later step depends on
Skipping an iteration is not a failure — the run continues and completes normally.
Continue Loop, Stop Loop or Stop Workflow?
| Step | Effect |
|---|---|
| Continue Loop | Skips the rest of this iteration, continues with the next |
| Stop Loop | Leaves the loop entirely, integration continues after it |
| Stop Workflow | Ends the whole integration run |
Updated about 6 hours ago
Did this page help you?
