Create List
Create List
Section titled “Create List”Type: list-create · Package: Collections Activities v1.0.0 · Output: List
Creates an empty list and saves it to a variable. It is the starting point for accumulating elements along a flow (for example, within a loop).
How it works
Section titled “How it works”Creates an empty list and assigns it to the variable indicated in outputVariable. Then you add items with Add to List.
Parameters
Section titled “Parameters”| Parameter | Editor | Description |
|---|---|---|
outputVariable | nombre de variable | Variable where the list is saved. |
Example
Section titled “Example”Create List outputVariable = resultadosFor Each items = = correos itemVariable = correo └─ activities: Add to List list = = resultados item = = correo.SubjectRelated activities
Section titled “Related activities”- Add to List — add items.
- Create Dictionary — create a dictionary.