Developing Applications Using Cisco Core Platforms and APIs (DEVCOR) — Question 424
An engineer must enable an SSID in a Meraki network.
Which request accomplishes this task?
Answer options
- A. PUT /networks/{networkId}/ssids/{number}?enabled=true
- B. POST /networks/{networkId}/ssids/{number}?enabled=true
- C. PUT /networks/{networkId}/ssids/{number} {"enable": true}
- D. POST /networks/{networkId}/ssids/{number} {"enable": true}
Correct answer: C
Explanation
The correct answer is C because it uses the PUT method with the proper JSON format to enable the SSID. Options A and B are incorrect as they do not use the correct JSON body format, and option D uses the POST method, which is not appropriate for updating existing resources like enabling an SSID.