Two city networks both broadcast a friendly name Guest. Automation must enable the Guest SSID on one network via Dashboard. What goes in the path segment {number}?
Select an answer to reveal the explanation.
Short Explanation
Friendly names can collide across networks—the API still addresses a numbered slot. GET the SSID list, find which number is Guest, then PUT that number.
Full Explanation
In Meraki Dashboard, {number} is the SSID slot index (0–14). Two networks can share a friendly SSID string; the API still addresses a number. Construction is GET /networks/{networkId}/wireless/ssids to learn which slot is Guest, then PUT that number. The name may be updated as a body field but is not the path key.