Paging Parameters
Some Xbox services URIs return collections of JavaScript Object Notation (JSON) objects. These collections can be paged through by specifying paging parameters as part of the query string attached to the URI. A complete list of the paging parameters follows. All URIs that allow paging parameters are linked to at the bottom of this page.
Query string parameters
Parameter | Required | Type | Description |
---|---|---|---|
continuationToken | No | string | Return the items starting at the given continuation token. |
maxItems | No | 32-bit signed integer | Maximum number of items to return from the collection, which can be combined with skipItems and continuationToken to return a range of items. The service may provide a default value if maxItems is not present, and may return fewer than maxItems, even if the last page of results has not yet been returned. |
skipItems | No | 32-bit signed integer | Return items beginning after the given number of items. For example, skipItems="3" will retrieve items beginning with the fourth item retrieved. |