Official comment
Hi Cheryl,
The way to control how many rows to pull and which row to start on is via the LIMIT and OFFSET parameters. LIMIT has a maximum value of 5000.
To get the first 5000 records:
https://apie1.clarizen.com/v2.0/services/data/query?q=SELECT Project.Name,ReportedDate FROM Timesheet WHERE ReportedDate>=2021-09-01 LIMIT 5000 OFFSET 0
To get the second 5000 records:
https://apie1.clarizen.com/v2.0/services/data/query?q=SELECT Project.Name,ReportedDate FROM Timesheet WHERE ReportedDate>=2021-09-01 LIMIT 5000 OFFSET 5000
I.e. The only difference in each call is the OFFSET parameter.
I hope this helps.
Roland