When you call a GET API call for users / groups / and other such objects, the response is usually Paginated, in case these are a lot of objects returned.
What do you do in order to retrieve all objects? Solution: You have to call a different API request for the next page, which will then provide another API call in the response headers of it - for the following page (in case there are still objects to be returned), till there are no more objects to be returned
Reveal Solution
Next Question