Channel Utilisation Not Getting Details For All AP's

Solved
AxL1971
Building a reputation

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

1 Accepted Solution
RaphaelL
Kind of a big deal
Kind of a big deal

Yes , you are probably missing the pagination : 

 

perPageInteger

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.

View solution in original post

2 Replies 2
RaphaelL
Kind of a big deal
Kind of a big deal

Yes , you are probably missing the pagination : 

 

perPageInteger

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.

AxL1971
Building a reputation

thanks 

 

Lesson I have learnt today is read the API documentation properly

Get notified when there are additional replies to this discussion.