Search K
Appearance
Appearance
Iterates over an array of items or a fixed count, executing a connected sub-workflow once for each iteration.
Use the Loop task when you need to perform the same sequence of steps repeatedly — once for each item in a list, or a fixed number of times. Each iteration runs to completion before the next begins, ensuring sequential processing. Connect downstream tasks to the Next output to define the per-iteration work, and optionally connect a task to the Finished output for any clean-up that should run once all iterations are done.
| Field | Type | Required | Description |
|---|---|---|---|
| Operation | Dropdown | No | Determines how the iteration count is defined. From Object Array loops over the items in an array; Count loops a fixed number of times. |
| Array Object | Text | No | The array to iterate over. Each element becomes the current LoopItem for that iteration. Visible when Operation is From Object Array. |
| Count | Text | No | The number of times to loop. Visible when Operation is Count. |
Array Object is visible when Operation is From Object Array. Count is visible when Operation is Count.
| Name | Description |
|---|---|
| LoopItem | The current item being processed in this iteration. Available to all tasks within the loop body. |
| IterationIndex | The zero-based index of the current iteration. |
| IterationCount | The total number of iterations. |
Process each user in a list one at a time.
| Field | Value |
|---|---|
| Operation | From Object Array |
| Array Object | GetUsers.Result |
Connect downstream tasks to the Next output. Reference Loop1.LoopItem within those tasks to access the current user.
Repeat a task five times regardless of data.
| Field | Value |
|---|---|
| Operation | Count |
| Count | 5 |