Thanks for your help! In our Meraki network, our Level 1 team often fixes issues on during power outages by disable/enable switch port. We wanted to automate this process. I tried the API you suggested, but it doesn't give me the AP names, just a list [ { "name": "switch name", "serial": "Serial number", "mac": "Mac xx: xx: xx", "network": { "id": "network_ID_L", "name": "Melbourne HQ" }, "model": "MS410-16", "ports": [ { "portId": "1", "name": "Level-1 Switch Stack", "tags": [], "enabled": true, "poeEnabled": false, "type": "trunk", "vlan": 502, "voiceVlan": null, "allowedVlans": "all", "rstpEnabled": true, "stpGuard": "disabled", "linkNegotiation": "Auto negotiate", "accessPolicyType": "Open" } As an alternative, we could run a report and read it from an Excel file each time, but that wouldn't be very efficient for our large network. Ideally, we'd have a fully automated system: When an AP goes down then The system automatically finds the connected switch and port. The system disables and then re-enables the port on the switch. Finally, the system checks if the AP is back online. I might not be explaining perfectly, but hopefully you understand what we're trying to achieve. Is it possible to build an API to do this? Thank you
... View more