Skip to main content
List

Create new list

Create new list

Creates a new in-memory list for the temporary storage of records during the robot execution. The list can be accessed by other actions along the flow using the ID of this action as a reference. Use Add record to insert items and Get all values to retrieve them.


Options

This action has no configuration options.

Returns

Javascript code

js
actions["action-id"].values // values stored in the list (List)
actions["action-id"].size // number of records in the list (Number)

Field selection

  • values — values stored in the list (List)
  • size — number of records in the list (Number)

Rules and Conditions

  • The list is created empty and can receive records with the Add record action.
  • The list exists only during the robot execution and is discarded at the end.
  • Multiple lists can be created in the same flow using different Create new list actions.