Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
I have been trying for hours to use the reports API to create a report in DNAC. I have followed the guidelines to a T, but I get error 500 no matter what. I even used the "Inspect" tool with Chrome and created a report using the GUI, but the format...
I have written Python code using the "meraki" Python package and it's working great. I just ran into an issue where my code attempted to add MR devices to a "Switch Only" network. This got me thinking that along with the serial number format valida...
HI Herbert, my code required the payload to be in JSON format. I have copied and pasted the temple from the API documentation. The way it is listen here is as a Python dictionary. I fixed that with this: data = json.dumps(payload)
import requests...
roo54,
I don't work on the smaller controllers much, but the architecture changed from the 2504 to the 3504 so you cannot do a straight copy and paste for the configs. There are changes with the encryption and how the ports are configured. If it was...
RESOLVED
Looks like the API document is not 100% accurate. When using Python Requests, you must turn the payload dict into JSON:
response = requests.request('POST', dnacUrl, headers=headers, data = json.dumps(payload), verify= False)
As soon as I...
Hey Ahmad.Syed,
I'm using version Version 2.3.3.6. You find the AP Health Score within the AP Report. To get there just go to the Hamburger (Three Lines top left) > Reports > Report Templates > Access Point > AP and click on "Generate".
it will a...
Sungod,Thanks for the reply. The automation I'm working on is when my field services team is installing a new network. The first part of my code reads an Excel sheet that has all of the Serial Numbers that are going to be applied to the site. When...