Which is the best way to call api multiple times basead on an array value

Resolved

I need to call a POST for each value inside an array as a query parameter.

Which is the best way to call api multiple times basead on an array value?

Example:

Array: [3333, 4444, 5555]

First POST: url.com/[3333]

Second POST: url.com/[4444]

Third POST: url.com/[5555]

I tried to use loop action with count parameter but I can't parse the count parameter inside the json path of the api call (Example: $.data[count].id = $.data[0].id -> $.data[1].id -> $.data[2].id


3
3 replies