I modified / pasted the code here -> https://pastebin.com/iU2ssCVD It looks like pasting to pastebin changes the formatting somewhat. If you're unsure of anything let me know. The script is written in Powershell so some adaptation would be required if not using Windows. Just noticed a mistake here: function api_get($key, $url) { $headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]" $headers.Add("X-Cisco-Meraki-API-Key", "$apikey") Just replace ($key, $url) with ($apikey, $url) it'll likely still work without this change
... View more