Limit Parameter

The limit query parameter is used to specify the maximum number of items of a resource collection to return in a response.

For example, to return only the first 3 plans in the /Plans collection, send the following request:

GET https://uwin2012r2.n.local:9898/api/v7/Plans?limit=3

The Orchestrator REST API returns resources in the default order based on its own semantics. To sort or filter a collection before selecting top results, use the sort or filter query parameters. Note that the sort and  filter parameters are applied before the limit parameter, regardless of their position in the request. That is, a collection is first filtered or sorted, and then the top results are selected.