Thank you for answering. And I regret that I can't rollback more than 31 days. I have 4 networks and I don't get more than 100 clients per day, so I'll try to find a way to get them regularly. Now, I was able to get all the network ids, so I decided to download an Excel format manually by generating the URL for the Summary page "https://n232.meraki.com/network id........." import meraki dashboard = meraki.DashboardAPI(API_KEY) organizations = dashboard.organizations.getOrganizations() for organization in organizations: organization_id = organization['id'] print(f"organiztion_id : {organization_id}") networks = dashboard.organizations.getOrganizationNetworks(organization_id) for network in networks: network_id = network['id'] network_name = network['name'] print(f"network_id : {network_id}") print(f"network_name : {network_name}")
... View more