- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Channel Utilisation Not Getting Details For All AP's
I am running following APi call to get channel utilisation for the AP's in a network
/networks/{networkId}/networkHealth/channelUtilization
The network has 72 AP's but the API only returns data for 10 of the AP's
I am sending the parameter of 10 mins for the timespan to collect utilisation in the last 10 minutes
Am I missing anything here
Solved! Go to solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes , you are probably missing the pagination :
The number of entries per page returned. Acceptable range is 3 - 100. Default is 10.
You could either do this call :
/networks/{networkId}/networkHealth/channelUtilization?perPage=100 or manage the pagination via your code.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes , you are probably missing the pagination :
The number of entries per page returned. Acceptable range is 3 - 100. Default is 10.
You could either do this call :
/networks/{networkId}/networkHealth/channelUtilization?perPage=100 or manage the pagination via your code.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thanks
Lesson I have learnt today is read the API documentation properly
