page query parameter to walk through all records.
Parameters
Example
Detecting the last page
The response includes acount field representing the total number of matching records. You have reached the last page when the following is true:
count is 112 and your pageSize is 50, you need three pages (pages 0, 1, and 2). On page 2 you will receive the remaining 12 records.
Iterating all records
To collect all cards on a board:- Fetch page
0and readcountfrom the response - Calculate the number of pages:
Math.ceil(count / pageSize) - Fetch each subsequent page until you have all records
Avoid storing page numbers as persistent cursors. If cards are added or removed between requests, page boundaries can shift. For reliable sync, use a timestamp filter if available or reconcile by card ID after fetching all pages.