A city library needs the Guest SSID turned on through the Meraki Dashboard API. Which request enables that SSID slot?
Select an answer to reveal the explanation.
Short Explanation
Meraki SSIDs already occupy numbered slots—you flip enabled to true with a PUT, you do not POST a brand-new SSID factory. CLI wlan tricks are not this Dashboard task.
Full Explanation
Enabling an SSID on Meraki Dashboard is PUT /networks/{networkId}/wireless/ssids/{number} with JSON enabled: true and only the attributes being changed. Dashboard models SSIDs as existing slots; POST to invent a new collection entry is not how enable works. Controller CLI wlan commands and DELETE are not the constructed Dashboard enable path.