Getting Started
Pagination
Example overview page before API endpoints
Endpoints that return a collection of results are always paginated. Paginated results will return a PagedResponse<T>[]
object.
The objects contains meta
, links
and items
properties.
Paginated request
The number of the page to return.
The number of items to return. Defaults to 30. Min = 1. Max = 100
Paginated response
Contains information about the number of results and pages
Useful links to get the first/last and next/previous page of results
An array of the items requested
Was this page helpful?