data
response object, as well as some metadata that’s useful for pagination in the pagination_metadata
response object.
Generically, the response format is:
has_more
will be true
if there are more results that were not returned by this endpoint due to the limit
value set.next_cursor
is a string value that will be non-null
if has_more
is true
. This value should be provided to the same endpoint in a subsequent call to fetch more results, maintaining the same sort order.has_more=True
, pass the next_cursor
response as the cursor
query parameter to fetch the next page of results.
By default, paginated resources are sorted from most recently created to least recently created, determined by the created_at
field on each resource.
limit
query parameter to a paginated request.