Post request lists of in a desired ordering

Hi
I’m creating records using Http Request node through a list of items.
I am arranging the lists in the desired order following which is important.
But the requests do not follow the order of the list.
See example my workflow…

See sequence request…


Hi @Edson_Rodrigues, n8n would process the requests sequentially, but will send them out individually in very fast succession, so the destination might not process them in the same order (especially likely for distributed systems).

You could add options for Batch Interval and Size like so to prevent this:
image

Now when checking the incoming requests on webhook.site you should see these requests in the correct order (ID 1 first, ID 200 last).

Awesome @MutedJam
Thank you so much
This is what I was after.
My problem is solved.

1 Like