Hi Phillip, I adjusted my loop to: for netid in network_id: for id in client_ids: try: test = dashboard.networks.getNetworkClient(netid, id) print(test) except meraki.exceptions.APIError as e: if '404 Not Found' in str(e😞 print(f"Client ID {id} not found in network ID {netid}") else: # Handle other API errors print(f"Error occurred for client ID {id} in network ID {netid}: {e}") now I get to see where the error is. I removed the networkid that didn't have any clients in and now the endpoint is working. Thanks for the quick reply!
... View more