offset and limit
query parameters. Marker-based pagination is not supported.
API Pagination
To fetch the first page of search results, the API needs to be called either without theoffset parameter, or with the offset set to 0. The
limit field is optional.
offset parameter that’s equals the sum of the previous offset value and
limit returned in the previous result, previous_offset + previous_limit.
Note that the
offset should be increased by the previous limit and not by
the size of the entries in the response array, as this may be less than the
limit. Generally we advise using the value of the limit in the response
object to increase the offset value.offset value exceeds
the total_count value in the response object. At this point there are no more
items to fetch.
