Introduction
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.
Treat these URLs as a opaque strings. Do not try to parse or construct it.
An array of objects, sorted in reverse chronological order by creation date.