meta.pagination object with cursors pointing to the previous and next pages.
Request parameters
Pass these as query parameters on any list endpoint.Number of records to return. Default:
20. Maximum: 20.Cursor pointing to the next page. Pass the value of
meta.pagination.next_cursor from the previous response.Cursor pointing to the prior page. Pass the value of
meta.pagination.previous_cursor from the previous response.Response envelope
All list endpoints wrap their results in a standard envelope:The list of objects for the current page.
The number of records requested per page.
Total number of records matching the query across all pages.
true if there are more records after this page. false on the last page.true if there are records before this page. false on the first page.Cursor to pass as
next_cursor to fetch the next page. null when has_next is false.Cursor to pass as
previous_cursor to fetch the prior page. null when has_previous is false.The active filters applied to the query, reflected back in the response.
