Actions
For Loop
Overview
Iterate over a list or repeat actions a fixed number of times within the workflow.
Use Cases
- Batch Processing: Apply the same action to multiple items in a list.
- Iterative Steps: Execute actions repeatedly based on a defined count.
Configuration Fields
List or Loop Count
- Description: Enter a list to loop over or a fixed number of iterations.
- Example: ”[‘A’, ‘B’, ‘C’]” or “3.”
- Required: Yes
Loop Variable Name
- Description: Name the variable to store the current list item or loop index.
- Example: “current_item” or “loop_index.”
- Validation: Only letters, numbers, and underscores (_) are allowed.
- Required: Yes
Loop Index Variable Name
- Description: Name the variable to store the loop index (starts at 0).
- Example: “index.”
- Required: Yes