04-28-2022 02:30 AM
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.
04-28-2022 04:08 AM
probably just a type:
response = dashboard.organizations.getOrganizationDevicesStatuses(organization_id)
04-28-2022 04:08 AM
probably just a type:
response = dashboard.organizations.getOrganizationDevicesStatuses(organization_id)
04-28-2022 04:50 AM
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,
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