I'm pretty new to using Python, and I'm having issues getting this to work. I set the collect dict like this collect['network_id'] = netids['deepellum'] collect['t_0'] = 't0' collect['timespan'] = 900 collect['per_page'] = 500 collect['starting_after'] = 'startingAfter' collect['ending_before'] = 'endingBefore' and then I have this result = clients_controller.get_network_clients(collect) As you can see, I pretty much just copied from the meraki sdk documentation. If I take all the optional params out and just leave the network ID inside collect it runs with no errors. I'm sure there must be something simple I am missing, I'm just new to Python and API's in general. Any help would be much appreciated.
... View more