04-07-2024 01:12 AM
Hello
I have enough network knowledge and Meraki dashboard experience for dashboard UI process.
Because of SDWAN enroll, I have large setup task. So I need the skill for automation.
But I found below course don't help me. It more like a quick guide use for developer but I am not developer.
Meraki APIs Using Node-RED
It don't have sample for one of below topic.
May you please guide me how to learn relate knowledge? Any document, guide and sample are welcome.
Python open to learn. I have a Python book, but it also don't have sample for my request.
Thanks for your help.
Best Regards
Scott
04-07-2024 04:51 AM
Before jumping out into the Meraki API, you might want to consider getting the python basics first.
My employer ran an internal python course where part of it, was going through this Coursera course on Python.
I found it okay, although I already had been doing some stuff in Python.
04-08-2024 02:37 AM
Hello
when I follow https://developer.cisco.com/meraki/ to get Org, I get below error.
ERROR > organizations, getOrganizations - 401 Unauthorized, {'errors': ['Invalid API key']}
I think I should set URL to properly region. May you please advise how to define URL?
Thank you.
Best Regards.
Scott Gao
04-07-2024 12:54 PM
You could also look at third-party commercial tools like Boundless Digital.
https://www.boundlessdigital.com/network-management/meraki-automation/
04-08-2024 02:57 AM
Hello Philip
when I follow https://developer.cisco.com/meraki/ to get Org, I get below error.
ERROR > organizations, getOrganizations - 401 Unauthorized, {'errors': ['Invalid API key']}
I think I should set URL to properly region. May you please advise how to define URL?
Thank you.
Best Regards.
Scott Gao
04-08-2024 03:48 AM
Have you already enabled API usage and generated the API key?
https://documentation.meraki.com/General_Administration/Other_Topics/Cisco_Meraki_Dashboard_API
04-08-2024 07:09 AM
Hello
I success by below code for my first query.
Thank you.
base_url = 'https://api.meraki.cn/api/v1'
API_KEY = "****************"
import meraki
dashboard = meraki.DashboardAPI(API_KEY,base_url)
response = dashboard.organizations.getOrganizations()
print(response)
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide