Cisco
350-901 · Question #76
The Meraki API URL https://api.meraki.com/api/v0/networks/123456789/ssids/2 is been stored in the environment variable meraki_url and the API key has been stored in meraki_api_key. Which snippet prese
Sign in or unlock 350-901 to reveal the answer and full explanation for question #76. The question stem and answer options stay visible for context.
Network Automation
Question
The Meraki API URL https://api.meraki.com/api/v0/networks/123456789/ssids/2 is been stored in the environment variable meraki_url and the API key has been stored in meraki_api_key. Which snippet presents the API call to configure, secure and enable an SSID using the Meraki API?
Exhibit
Options
- Acurl -X PUT
-url 'https://api.meraki.com/api/v0/networks/networkId/ssids/2'
-H 'X-Cisco-Meraki-API-Key: 15da0c6fff295f16267f88f98694cf29a86ed87'
-H 'Accept: application/json'
-H 'Content-Type: application/json'
--data-raw '{ "name": "My SSID", "enabled": false, "authMode": "psk", "encryptionMode": "wpa", "psk": "meraki123", "wpaEncryptionMode": "WPA1 and WPA2" }' - Bcurl -X PUT
-url 'https://api.meraki.com/api/v0/networks/networkId/ssids/2'
-H 'X-Cisco-Meraki-API-Key: 15da0c6fff295f16267f88f98694cf29a86ed87'
-H 'Accept: application/json'
-H 'Content-Type: application/json'
--data-raw '{ "name": "My SSID", "enabled": true, "authMode": "psk", "encryptionMode": "wpa", "psk": "meraki123", "wpaEncryptionMode": "WPA1 and WPA2" }' - Ccurl -X PUT
-url 'https://api.meraki.com/api/v0/networks/networkId/ssids/2'
-H 'X-Cisco-Meraki-API-Key: 15da0c6fff295f16267f88f98694cf29a86ed87'
-H 'Accept: application/json'
-H 'Content-Type: application/json'
--data-raw '{ "enabled": true, "useVlanTagging": true }' - Dcurl -X PUT
-url 'https://api.meraki.com/api/v0/networks/networkId/ssids/2'
-H 'X-Cisco-Meraki-API-Key: 15da0c6fff295f16267f88f98694cf29a86ed87'
-H 'Accept: application/json'
-H 'Content-Type: application/json'
--data-raw '{ "name": "My SSID", "enabled": true, }'
Unlock 350-901 to see the answer
You've previewed enough free 350-901 questions. Unlock 350-901 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.
Topics
#Meraki API#REST API#curl#Network Configuration
