Simple question

Solved
axi-support
New here

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,

 

 

1 Accepted Solution
KarstenI
Kind of a big deal
Kind of a big deal

probably just a type:

response = dashboard.organizations.getOrganizationDevicesStatuses(organization_id)

If you found this post helpful, please give it Kudos. If my answer solves your problem, please click Accept as Solution so others can benefit from it.

View solution in original post

2 Replies 2
KarstenI
Kind of a big deal
Kind of a big deal

probably just a type:

response = dashboard.organizations.getOrganizationDevicesStatuses(organization_id)

If you found this post helpful, please give it Kudos. If my answer solves your problem, please click Accept as Solution so others can benefit from it.
axi-support
New here

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,

Get notified when there are additional replies to this discussion.