I am very new to the Meraki API, and am trying to get the latency for a specific device, but when I ran the request it returns an empty list, even though the response is 200. I'm not sure what I am doing wrong. Here's my code: headers = { 'X-Cisco-Meraki-API-Key' : MERAKI_API_KEY, 'Content-Type' : 'application/json' , } r = requests.get( f "https://api.meraki.com/api/v0/networks/ { net_id } /devices/ { serial_num } /lossAndLatencyHistory?uplink=wan1&ip=1.2.3.4" , h eaders =headers) print(r) print(r.text) ------------- OUTPUT: <Response [200]> [] network id and serial are stored in those variables, and the ip address is different. I appreciate any help.
... View more