300-435 Question 314
Select 2You are tasked with automating the deployment of a new branch network using the Cisco Meraki Dashboard API. The automation involves creating a new network, assigning it to an organization, and enabling an SSID with specific configurations. Which of the following API requests are required to complete this task?
- A
POST /organizations/{organizationId}/networks
- B
PUT /networks/{networkId}/ssids/{number}
- C
POST /networks/{networkId}/devices
- D
GET /organizations/{organizationId}/licenses
- E
PUT /organizations/{organizationId}/brandingPolicies
Show answer and explanation
Correct answers: A, B
Explanation
To deploy a new branch network using Cisco Meraki APIs, you need to create the network first (POST /organizations/{organizationId}/networks) and then enable/configure an SSID in the network (PUT /networks/{networkId}/ssids/{number}). Other API requests, such as adding devices or retrieving licenses, are not directly relevant to the task described in the scenario.
- A. Correct.
This API request is used to create a new network within a specified organization. It is essential for setting up the new branch network.
- B. Correct.
This API request is used to configure or enable an SSID within a network. It is necessary for enabling wireless connectivity with specific configurations.
- C. Incorrect.
This API request is used to claim or add devices to a network, but it is not required for creating a network or enabling an SSID in this scenario.
- D. Incorrect.
This API request retrieves information about licenses in an organization. While licenses are important, this request is irrelevant to the task of creating a network and enabling an SSID.
- E. Incorrect.
This API request is used to update branding policies for an organization, which is unrelated to the task of network creation and SSID configuration.