07-11-2025 07:45 AM
I see that "Get Network Devices" is now deprecated
https://developer.cisco.com/meraki/api-v1/get-network-devices/
does "Get Organization Devices" replace it?
https://developer.cisco.com/meraki/api-v1/get-organization-devices/
07-11-2025 07:48 AM
No, you have to use this one.
https://developer.cisco.com/meraki/api-v1/get-device/
07-11-2025 07:50 AM
Yes.
https://developer.cisco.com/meraki/api-v1/deprecated-operations/
We will get this page to be linked to the deprecation banner, so people won’t need to find it themselves.
07-11-2025 07:51 AM
Yes. If you want only one Network, the response can be filtered by including the Network ID in the query.
07-11-2025 10:32 AM
Thank you Steve.
Would that look something like this?
devices = dashboard.organizations.getOrganizationDevices(
organizationId=organization_id, networkIds=[network_id]
07-11-2025 01:13 PM
Yes, that code snippet works for me.
Edited to be more specific.. Unless "network_id" is defined somewhere else in your code, you'll need quotation marks around the Network ID, so..
devices = dashboard.organizations.getOrganizationDevices(
organizationId=organization_id, networkIds=['network_id'])
Thanks!
07-11-2025 07:51 AM
To be honest, I think both work. Have you tried them?
07-11-2025 10:35 AM
Thank you! You always are very helpful.
I have not tried it yet. reading up on how to filter the net ID then get the port info I need.
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