We’re currently experiencing a high volume of support requests, which may result in longer response times — thank you for your patience and understanding.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

This documentation is for the new preview UI. It’s still being refined and is subject to change. For documentation for the old UI, see Knowledge Base.

Article link copied to clipboard
Updated
Published
1 min read

Repeat a set of steps by iterating over items in a dataset or a fixed number of iterations

Actions

Break Loop

Breaks out of the current Loop, causing execution to resume after the containing Loop.

Loop N Times

Loops over the the steps in the loop N times, or until a loop break occurs.

Input Comments Default
Number of Iterations The number of times to execute the steps in the loop. 1000

Loop Over Items

Loops over items, applies each step in sequence, and returns a new collection of the results. Items must be an Array or Object.

Input Comments Default
Items These are the items to loop over. This must be an Array (list) or Object, and should be a reference to a previous step's results.