1. Cisco Meraki Dashboard API v1 Documentation: The official documentation specifies the method and endpoint for updating an SSID.
Endpoint: updateNetworkSsid
Method & Path: PUT /networks/{networkId}/ssids/{number}
Parameter: The enabled parameter is a boolean value passed in the request body.
Source: Cisco DevNet
Meraki Dashboard API
"Update the attributes of an SSID"
https://developer.cisco.com/meraki/api/v1/#!update-network-ssid (Accessed under the "Wireless > SSIDs" section).
2. REST API Design Principles (General Academic Context): University courseware on web services and API design consistently teaches that PUT is the standard idempotent method for updating or replacing a resource at a known URI.
Source: Fielding
R. T. (2000). Architectural Styles and the Design of Network-based Software Architectures. Doctoral dissertation
University of California
Irvine. Chapter 5
"Representational State Transfer (REST)". This foundational text defines the semantics of HTTP methods like PUT and POST.