The PlanD API uses offset-based pagination for list endpoints, allowing you to efficiently retrieve large datasets by controlling the number of items returned and skipping items for pagination.Documentation Index
Fetch the complete documentation index at: https://docs.pland.app/llms.txt
Use this file to discover all available pages before exploring further.
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
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

