I have an Iterator that processes 4 URLs → HTTP Request → HTML to Text Parser → Text Aggregator.
I need that the Text Aggregator combines all 4 text outputs into 1 bundle, but it’s still outputting 4 separate operations instead of aggregating them. So it’s sending 1 text at a time to the next module.
How do I force aggregation of all bundles before sending to next module?
Thanks!
1 Like
- After the HTML to Text Parser, insert an Array Aggregator module:
- Target Structure: Text (or whatever field holds your parsed content)
- Source Module: Select the module right before (i.e., HTML to Text Parser)
- Aggregation: Set to “Aggregate all” (it will group all 4 into one bundle)
- Then feed that Array Aggregator’s output into the Text Aggregator
- Now that you’re passing an array of parsed texts in a single bundle, Text Aggregator will combine them into a single string as expected.
For more support and explaination. You can reach me Here
Thanks for your help. But it still creates 4 individual operations 
1 Like
Your Array Aggregator needs to receive all bundles within a single scenario run, not split per URL so either gather the URLs upfront, or force all processing to happen in one execution thread.
Use Text Aggregator immediately after Array Aggregator inside a “single execution” branch
Step-by-Step Working Layout:
- HTTP Module: Get all 4 URLs at once (as an array).
- Iterator: Loop through URLs.
- HTTP Request
- HTML to Text Parser
- Array Aggregator: Aggregate all
Text fields (like you’re doing).
- Text Aggregator: Aggregate
Text array into single string.
- → Send to next module (e.g., email, Google Sheets, etc.)
Thanks for your answer.
This is what I have rn. Claude gives me 4 urls. a json divides them in 4 bundles, then iterator send one by one to html request to get the articles. But no ones put the text from urls into one bundle.
Thank you for your support. Appreciate it.
1 Like
You’re Welcome but the main purpose has been done right?
I don’t see any other option in the iterator.
Hi @Rocky_AI Welcome to the community!
I think you just to use correct Source module to solve this issue. Read solution for similar use case here : How to deduplicate with iterator? - #4 by Prem_Patel
I hope this helps!
Best,
@Prem_Patel