The vPlan API supports pagination via the query parameters limit and offset.Example: ?limit=50&offset=150Limit is the maximum number of records given in a resulting dataset.
Default: 100
Maximum: 1.000Offset is the number of records to be skipped for the resulting dataset.
Default: 0If an offset is larger than the possible items that can be returned for the request, an empty data array will be returned.The count property of a resultset can be used to determine how many calls must be made to retrieve all objects. ceil(count / limit) will return the amount of pages. Modified at 2025-10-30 09:44:26