cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2100
Views
1
Helpful
2
Replies

Simple question

SupportAC
Level 4
Level 4

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

Accepted Solutions

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

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.

SupportAC
Level 4
Level 4

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,