I am trying to run a speed test using API. Do you know where to find the device ID of the MX ? I am new to this. Apricate your help import requests url = "https://api.meraki.com/api/v1/devices/{{serial}}/liveTools/speedTest/:id" payload = {} headers = { 'Accept': 'application/json', 'Authorization': 'Bearer {{apiKey}}' } response = requests.request("GET", url, headers=headers, data=payload) print(response.text)
... View more