OAID - v2.2 Upgrade: No Offset Pagination
The latest update on the OAID API introduces No Offset Pagination (or Cursor Pagination) for two endpoints:
Understanding No Offset Pagination
Instead of page numbers, these endpoints use a cursor to efficiently navigate through the data. The two query parameters used for pagination are:
_page_size
- number of records per request_page_cursor
- identifies the starting point for the next page
These endpoints start reading data in order from the oldest records. The _page_cursor
for requesting subsequent pages is defined in the link
field within the API response header.
For more details on how to page through the data, please refer to our OAID documentation.