How can i set minimum operations limit from getting maximum operations limit in HTTP module?

What are you trying to achieve?

I want to get my desired limit operations from getting extra operations. In my scenario there is HTTP module is getting 70 operations but now i want to get only 5 operations. So what is the best way to getting this solution without getting any error.

Screenshots: scenario setup, module configuration, errors

Welcome to the Make community!

It looks like you are using an iterator. Do you want to only use the first 5 items in the array?

To do this, you can use the built-in function:

  • slice
    slice(array; start; [end])

This function may have also been covered in the Make Academy tutorials β€” refer to the Make Academy Course Overview to learn more.

Here’s an example of how you can use this function:

{{ slice(29.array; 0; 5) }}
(copy-paste the above into the field, or type it exactly as shown)

Hope this helps! Let me know if there are any further questions or issues.

β€” @samliew
P.S.: investing some effort into the tutorials in the Make Academy will save you lots of time and frustration using Make!

1 Like