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 variabletextyes—The list to operate on
Operationselectyes—append, prepend, remove, clear, length, get, join, contains
Value / indextext—yesItem for add/remove/contains, or index for get
Save result totext——For length / get / join / contains
Separator (join)text——Default ,

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"