Extreme API with Python

Table Of Contents
Extreme API with Python
Page | 122
Part no.9036931-00 Rev AA February 2021
Nearly every endpoint has a pageSize parameter. By default, XIQ sends data at a maximum of 100
entries at a time, on one return, which can be too small when collecting the clients list, for example. The
pageSize parameter lets you change this value to better match your needs.
The pagination entry in the data returned provides valuable information.
'pagination': {
'offset': 0,
'countInPage': 7,
'totalCount': 7
}
In this example, you know that there are 7 objects and that you received 7, and you have received
everything on page 0, so you don’t need more pages to display the information.
If you need more than 100 objects, you must set the pageSize accordingly, or request the page numbers
using the page parameter.