Pagination
All list endpoints return a consistent envelope: an array of results indata
and a pagination object describing how to fetch the next page.
Parameters
Pagination object
Iterating all pages
Keep requesting with the returnednext_cursor until has_more is false
(equivalently, until next_cursor is null).
Notes
- Treat
next_cursoras opaque — do not parse or construct it yourself. Its encoding may change without notice. - Some list endpoints include an extra
metaobject alongsidedataandpagination(for example,scope_countson reports).dataandpaginationare always present on list responses.