Really, this seems like a case for automation. If you're already comfortable doing so with Puppet, I'd use that. Otherwise, you could slap it together with some loops and the dashboard API. This might be messy but it's how I would probably do it if I needed it quick: Use Postman to grab your network ID Make a list of serial numbers: Make an array OR Make a text doc that contains each serial number for that site Open the file in your script and yank the data out into an iterable format. Iterate through using claimNetworkDevices, one serial number per call. Profit
... View more