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.
Is there a way to disable the logging every time I run a script. It prints out to my console and creates a file.this is what is being printed to my console The only thing I want to print out is the last 3 lines which is in red2020-10-14 21:32:18 me...
I'm getting an error when running this code. while trying to update the network syslog server values. It fails when it tries to run the update = dashboard.networks.updateNetworkSyslogServers(network_id, servers) line. below is the script I'm tying ...
I'm trying to import Meraki and get error of __init__ raise APIKeyError()Here is the script I'm usingMERAKI_DASHBOARD_API_KEY='093b24e85df15a3e66f1fc359f4c48493eaa1b73' # Demo API Keyimport merakidashboard = meraki.DashboardAPI()my_orgs = dashboard.o...
When I run the get list of organization or any get calls I get { "errors": [ "Invalid API key" ]} However I can use the same API key on previous Meraki Dashboard API
I have a user with a DX80 when they turned it on it displays Service Activation Required. We are using the CE OS and MRA to UCM. Any help would be helpful
Thanks for that. Now I'm gettingmeraki.exceptions.APIError: networks, updateNetworkSyslogServers - 400 Bad Request, {'errors': ['Please select at least one valid role for 10.178.207.68 513']}
I figured out what the problem was. I wasn't passing the api_key into the argument.dashboard = meraki.DashboardAPI()should have been dashboard = meraki.DashboardAPI(api_key)
Thanks for the replyHowever I get the same errorCodepi_key='093b24e85df15a3e66f1fc359f4c48493eaa1b73' # Demo API Keyimport merakidashboard = meraki.DashboardAPI()File "C:\Users\Meraki\AppData\Local\Programs\Python\Python38\Lib\site-packages\meraki\__...
Correction to my postI ran each line into the python console and it isn't failing in the import Meraki. It is failing when it calls dashboard = meraki.DashboardAPI()