I have one minor alternative to @BrechtSchamp 's method. For my Orgs it simply takes too long to iterate through every Org, and then every network to get the device list. I use this call to return all the devices in an Org in a single call: https://api.meraki.com/api_docs#return-the-inventory-for-an-organization {{baseUrl}}/organizations/{{id}}/inventory And then do what I need to do on each device. It's much quicker than getting every network in an Org first (if you have lots and lots of networks in an Org, like we do).
... View more