Features Pricing Docs Community
Sign In Get Started Free

How do loops work in Dranseq sequences?

Asked by Dranseq Team · 12 views · 0 upvotes
Iterating over lists and arrays in your automations.

1 Answer

Accepted Answer
Loops let you repeat actions for each item in a list.

When to use loops:
- Processing each row from a spreadsheet query
- Sending a message to multiple recipients
- Creating multiple records from a list

How to add a loop:
1. Click + and select "Loop"
2. Choose the list to iterate over (e.g., output from a previous step)
3. Add steps inside the loop — they run once per item
4. Use {{loop.item}} to reference the current item

Important notes:
- Each iteration of a loop is still part of the same 1 run — loops don't multiply your run count
- Loops run sequentially by default
- You can add branches inside loops
- Maximum 1,000 iterations per loop to prevent runaway sequences

Example: "Get all unpaid invoices from Stripe → Loop through each → Send reminder email via Gmail"

Answered by Dranseq Team