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)

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)

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.