List / collection

Free

Operations on a list — add, remove, length, get, join, contains.

Manages a list stored under a variable name. See Lists & collections.

Fields

FieldTypeRequiredTemplatableNotes
List variabletextyesThe list to operate on
Operationselectyesappend, prepend, remove, clear, length, get, join, contains
Value / indextextyesItem for add/remove/contains, or index for get
Save result totextFor length / get / join / contains
Separator (join)textDefault ,

Outcomes

  • default — continue the flow.

How it works

Read operations (length, get, join, contains) write their result into the Save result to variable.

List  cart  append  "{{var.product}}"
List  cart  length  → cart_count
Send "You have {{var.cart_count}} items"