Pagination
All endpoints that list objects provide support for pagination.
Paginated responses return items in reverse chronological order, such that the most recently created object will be returned first on the list and the oldest will be returned last.
The result includes a link
object with a previous
and a next
attribute. Do a GET
to the URLs in those attributes to fetch the previous or next page of results.
Attributes
Paginated responses share a common structure using cursor-based pagination.
Links to fetch the next and previous page of the paginated result.
A pre-built absolute path URI for fetching the next page of results.
If the value is null
, this is the last page of results.
A pre-built absolute path URI for fetching the previous page of results.
If the value is null
, this is the first page of results.
An array of objects, sorted in reverse chronological order by creation date.