- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
DashboardAPI Error
Hello everyone,
with python i try:
>>> import meraki
>>> API = ********
>>>dashboard = meraki.DashboardAPI(API)
but raises an exception:
AttributeError: module 'meraki' has no attribute 'DashboardAPI'
I have the latest version 1.39.0
What I am doing wrong?
Thanks.
Solved! Go to solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Maybe it will help you.
https://community.meraki.com/t5/Developers-APIs/Meraki-API-No-Attributes/m-p/151439
Please, if this post was useful, leave your kudos and mark it as solved.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This attribute does not exist, what information do you want to extract from the Dashboard exactly?
Please, if this post was useful, leave your kudos and mark it as solved.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If doens't exist, according to docs, how I will be able to have a response from as an example:
response = dashboard.organizations.getOrganizations()
if:
dashboard = meraki.DashboardAPI(API_KEY)
raises an exception:
AttributeError: module 'meraki' has no attribute 'DashboardAPI'
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Maybe it will help you.
https://community.meraki.com/t5/Developers-APIs/Meraki-API-No-Attributes/m-p/151439
Please, if this post was useful, leave your kudos and mark it as solved.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
after you do
>>> import meraki
what is the output of
>>> dir(meraki)
and
>>> meraki.__version__
?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Follow this usage guide from the Meraki developer portal.