Hi, I am new to postman I need some help defining a search results.
I have a test endpoint for 10 users https://jsonplaceholder.typicode.com/users I want to be able to only view 5 of those users.
What I have tried using setting the limit variable to 5, the size variable to 5 but I am still getting 10 users back in my body results.
https://jsonplaceholder.typicode.com/users?limit=5
https://jsonplaceholder.typicode.com/users?size=5
I have search on other topics but most results is telling me to use limit variable and size but this does not seem to work.
Please help.
Thank you