The vPlan API supports pagination via the query parameters limit
and offset
.Example: ?limit=50&offset=150
Limit 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.Max amount of items fetched
Offset so items may be paginated
Modified at 2025-06-30 07:38:47