All images, for context, are attached in this question.
I have an escenario where i get over 400 emails from a trello board. I have to update records in another platform using those emails. For this im using an HTTP POST request.
The problem is that with the structure i have im only sending 1 out of the 400 cause the Post request is being done only one time
Is there a way to do this Post request for all the emails in the array?
You aggregated all the emails into a single array variable. This will only output a single bundle, and future modules will only run once.
If you meant to run the HTTP module once per email, then simply remove the Array Aggregator?
If you meant to send all the emails in a single string variable, then you might want to use a Text Aggregator instead.
Every result (item/record) from a search module will output a bundle. To “combine” them into a single structure, you’ll need to use an aggregator of some sort.
Aggregators are modules that accumulate multiple bundles into one single bundle. An example of a commonly-used aggregator module is the Array aggregator module.