Pagination and Sorting
Many of the endpoints will return only a limited of number of records, however it is often possible to paginate through these results by using the following URL parameters: sort
, page
, and page_size
.
Pagination
You can determine whether your results are paginated by looking for the meta[pagination]
field within the response.
Looking at the JSON example below we can see that within the pagination object there are 4 fields that provide the necessary information to paginate through the results.
Example 1: Showing the 3rd page of Account Vaults for a location, showing 10 per page :
GET /v2/accountvaults/?page_size=10&page=3
Example 2: Showing the 5th page of Account Vaults for a location, showing 20 per page :
GET /v2/accountvaults/?page_size=20&page=5
NOTE: The maximum number of records that will be returned on a request is 5000, even if page_size is set to a larger number.
Sorting
Most result sets can be sorted, and have a default sort. You can determine how your results are being sorted by looking for the meta[sort]
field within the response.
Looking at the JSON example above we can see that within meta[sort][attributes] you will find a field name with a corresponding value of either "asc" or "desc".
To sort by a specific field you can add sort={field_name} to the URL for the GET request like so:
GET /v2/accountvaults/?sort=created_ts
To sort descending, add a "-" in front of the field name like so:
GET /v2/accountvaults/?sort=-created_ts
This last method is a great way to return the most recent records first!
Putting it all together
To retrieve the 2nd page (10 records per page) of the most recent Account Vaults:
GET /v2/accountvaults/?sort=-created_ts&page_size=10&page=2
To retrieve the 2nd page (10 records per page) of the oldest Account Vaults:
GET /v2/accountvaults/?sort=created_ts&page_size=10&page=2