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?

StepEffect
Continue LoopSkips the rest of this iteration, continues with the next
Stop LoopLeaves the loop entirely, integration continues after it
Stop WorkflowEnds the whole integration run

Did this page help you?