pageSize

Specify page size of response using the pageSize parameter

The pageSize parameter is used to specify the maximum number of items pr page.

The default value is 10 (10 items are included in each page). This parameter works in conjunction with the values for pageNo (default value 1), sort (default value is "sequence") and filter (default empty).

Given a collection with 100 items, you could return the first 25 items with the following request:
https://<host-name>/<api-path>/<collection-name>?pageSize=25

If you change the pageSize parameter to 50, the following request would return the last 50 items:
https://<host-name>/<api-path>/<collection-name>?pageSize=50&pageNo=2

Valid values for the pageSize parameter are positive integers.