Offset Parameter

The Offset query parameter is used to exclude from a response the first N items of a resource collection.

For example, to show in a response all data collection tasks starting from the forth one, send the following request:

GET https://one-srv:1239/api/v2.2/dataCollection/tasks?Offset=3

You can combine the Limit and the Offset parameters to request a particular set of items. Note that the Offset option is applied before the Limit option, regardless of its position in the request. That is, top results are selected from a collection where a set of items is already excluded.

For example, to return the second and the third data collection tasks configured in Veeam ONE, send the following request:

GET https://one-srv:1239/api/v2.2/dataCollection/tasks?Offset=1&Limit=2

The Veeam ONE REST API returns resources in the default order based on its own semantics.