I am trying to retrieve my devices performance with the python api call
result = devices_controller.get_network_device_performance(collect)
For some reason when I populate the collect dictionary and call this api I get the error:
raise APIException('HTTP response not OK.', context)
meraki.exceptions.api_exception.APIException: HTTP response not OK.
But when I convert the dictionary (collect) to a string I get no error, but also no performance data
What could be causing this error and what other approaches could I use to try and get the performance data from the network devices.
Many Thanks!