Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The pagination is available in API from 2025-02-27 and can be used in SDK from version 13.10.0.

The pagination can be enabled on selected API methods by explicitly specifying the EnablePagination property on the request object and setting it to value true. There are two other optional properties. The first one is PageSize, which defines the size of each page; the value has boundaries from 1 to 5000. A value outside of the boundary will fail the request. The second optional property is PageIndex, which is used to iterate through pages. The valid value is from 0 to N. Whether another page is available can be determined by comparing the count of returned items with the page size. Whenever the page size and the number of returned items are the same, there is probably a subsequent page. The empty page will return an empty list of results.

...