Appearance
Pagination
Many endpoints that return large lists of results are paginated. In instances where the number of results exceeds the size parameter (per-endpoint default, or optionally specified with the request), a cursor value is included in the response. Callers may repeat the request, including the original query parameters, with the addition of the cursor parameter, to retrieve the next set of results. Once all results have been returned, the cursor will be omitted from the last response.
Query Parameters:
- size - The number of results to return per call. The default varies per service.
- cursor - The cursor string signifying where to start the results
Response Data:
- cursor - If more results are available, this root level response value will be the next cursor string to be passed back. If no more results are available, this field will be absent.

