List all wireless access points from a network

vitormariano
New here

List all wireless access points from a network

Hi, there!

Is there any way to just list the wireless access points from a network, and count the devices connected to each of them? I noticed that the endpoint for listing devices doesn't specify which device type.

3 Replies 3
ww
Kind of a big deal
Kind of a big deal

Hi, you basically have to make it work yourself using code.

 

For example:

 

response = dashboard.networks.getNetworkDevices(
network_id
)

for item in response:
if (item["model"]).startswith("MR"):
print (item)
 
Ryan_Miles
Meraki Employee
Meraki Employee

Are you specifically looking for an API way to do this? If not you can also get the info from the client summary page by filtering on wireless clients, enabled the connected to column, and then export to csv.

Ryan / Meraki SE

If you found this post helpful, please give it Kudos. If my answer solved your problem click Accept as Solution so others can benefit from it.

Yes, my goal is to track the number of connected devices on each access point via API.

Get notified when there are additional replies to this discussion.