Requests
Objects
Enums
|
PagingSome request will return only a subset of the reponse if the reponse is big. (has too many results) This is called paging. The request that supports paging will have a "maxResults" and a "skip" parameter. If a request has more results a "paging-next" header will be added to the repsonse. The "paging-next" will contain the value to use as the "skip" parameter on the next request. As an example assume you have 17 meetings, and do the request: /api/v1/mymeetings/list?maxResults=10 You will get 10 meetings in the response and a "paging-next" header value 10. On the next request you use this in the "skip" parameter /api/v1/mymeetings/list?maxResults=10&skip=10 And you will get the remaining 7 meetings in the repsonse. And no "paging-next" header because this is the end of the data |