Hello,
Running
VisStudio 1.77.3 on windows 11
Meraki Library version 1.32.1
Python 3.10
Meraki AP: MR36
Firmware 17.10.4
I am attempting to run - https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-clients-health-scores
This gives back wireless clients health scores
The code is below:
url = "https://api.meraki.com/api/v1/networks/XXXXXXX/wireless/clients/healthScores"
payload = None
headers = {
"Content-Type": "application/json",
"Accept": "application/json",
"X-Cisco-Meraki-API-Key": API_KEY
}
response = requests.request('GET', url, headers=headers, data = payload)
print(response.text.encode('utf8'))
However I get the output of:
b'' - in visStudio
and Error 404 Not Found in the developer hub test environment.
The API and network appear to work fine on other scripts.
Any ideas what's wrong?
Many Thanks
Aidan