Best place to start is probably the examples on github, for instance... https://github.com/meraki/dashboard-api-python/blob/master/examples/aio_org_wide_clients_v1.py This is the line that sets off running the function on all networks at once... networkClientsTasks = [listNetworkClients(aiomeraki, folder_name, net) for net in networks] Then in that function, this is the API call being made... # Get list of clients on network, filtering on timespan of last 14 days
clients = await aiomeraki.networks.getNetworkClients(
network["id"],
timespan=60 * 60 * 24 * 14,
perPage=1000,
total_pages="all",
)
... View more