Implementing Automation for Cisco Enterprise Solutions (ENAUTO) — Question 100
An engineer needs to create a new network using the Meraki API. Which HTTP action to the URL https://api.meraki.com/api/v0/organizations/<new_org_id>/ networks will result in a 201 response code?
Answer options
- A. GET
- B. POST
- C. PUT
- D. ADD
Correct answer: B
Explanation
The correct answer is B, POST, as this method is specifically used to create new resources on a server, which aligns with the requirement to create a new network. The other options, GET and PUT, are used for retrieving and updating resources respectively, while ADD is not a valid HTTP action.