Hi folks, I'm really new to Python programming but I just put this together to achieve a similar thing, I think. I have used colleagues ideas and trawled the StackOverflow site for ideas and inspiration. It will return any enabled SSID and print details about it. Of course it can be sent to a file if needed rather than just printed to a screen. Hope it helps someone. from time import sleep from rich import print as rprint try: networksResponse = dashboard.organizations.getOrganizationNetworks( orgId, total_pages='all' ) for network in networksResponse: z = network['productTypes'].count('wireless') if z > 0: response = dashboard.wireless.getNetworkWirelessSsids( network['id'] ) configured = [n for n in response if n['enabled'] == True] rprint(network['name'], "-", configured) sleep(.1) except meraki.APIError as e: print(e) Kind regards Richard
... View more