Pagination Parameters
Based on the API specification, all list endpoints support these pagination parameters:Maximum number of items to return. Must be between 1 and 1000 for most endpoints.
Number of items to skip for pagination. Must be 0 or greater.
Pagination Implementation
1
Start with the first page
Begin with
offset=0 to get the first set of results2
Calculate subsequent pages
For each subsequent page, increase the offset by the limit value
3
Detect the end of results
When the response contains fewer items than the limit, you’ve reached the end
If you request 100 items but only receive 50, there are no more pages
Code Examples
Special Pagination Cases
Payment Terms Endpoint
Payment Terms Endpoint
The
/paymentTerms endpoint uses different parameter names:- Uses
skipinstead ofoffset - Maximum limit is 100
- Has special sort parameters
Time Tracking Endpoint
Time Tracking Endpoint
The
/timeTracking endpoint has a lower maximum limit:- Default limit: 50
- Maximum limit: 500
User Filtering Endpoint
User Filtering Endpoint
The
POST /users/filter endpoint uses different parameter names:- Uses
skipinstead ofoffset - Parameters are in the request body

