Learn how to iterate through a collection’s pages.
(int) limit
defines the maximum number of items per page you will get.(string) page
is the continuation token obtained during a previous request allowing you to get the next page or the previous page.limit
parameter, usually 100, as well as a default value if none is given. Please refer to the Lucca API Reference for the given collection endpoint.items
contains the resources in the given page ;totalCount
indicates how many resources exist across all pages (while applying the query filters) ;links
contains both the links to the previous and the next pages (null
if there is none).totalCount
and links
properties are only returned if your HTTP request explicitly includes them: ?include=totalCount,links
.?sort
query parameter is omitted.