Pagination
Some API requests might return many results. To avoid performance issues, these results are returned one page at a time, with a limited number of results on each page. GET requests for the following resources use pagination:
/v1/{sid}/queue_managers/v1/{sid}/users/v1/{sid}/applications
The default page size is 25 objects. To use a different page size, use the limit
query parameter. The pagination strategy in use is limit and offset.
For any request that uses pagination, the response includes First and where
applicable Next and Previous objects containing URLs to make
subsequent requests:
First: The object containing the URL for requesting the first page of resultsNext: The object containing the URL for requesting the next page of results. TheNextfield is omitted if there are no more resultsPrevious: The object containing the URL for requesting the previous page. ThePreviousfield is omitted if the response is the first page (offset=0)
These URLs retain the same limit parameter that was used for the initial
request.