- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Simple question
Hello,
I am trying to use:
https://developer.cisco.com/meraki/api-v1/#!get-organization-devices-statuses
following Merai Python Library option.
It should be:
response = dashboard.organizations.getOrganizationDevicesStatuses( organization_id, total_pages='all' )
but when I execute the script, I see the following error:
response = dashboard.organizations.getOrganizationDeviceStatuses(organization_id)
AttributeError: 'Organizations' object has no attribute 'getOrganizationDeviceStatuses'
Does some body know where is the problem?
Thanks,
Solved! Go to solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
probably just a type:
response = dashboard.organizations.getOrganizationDevicesStatuses(organization_id)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
probably just a type:
response = dashboard.organizations.getOrganizationDevicesStatuses(organization_id)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for your post.
Yes, I think you are right.
Not used to Meraki Python Library, and I got confused.
Again, thanks a lot,
Have a nice day,
