FILL BLANK - Fill in the blanks to complete the Python script to enable the SSID with a name of `371767916` in the network resource `11111111` using the Meraki Dashboard API.
1. 371767916
2. PUT
3. payload
Rationale:
SSID exists, we're only enabling it.
I don't like the URL in the snippet, and having trouble finding the older version documentation, hope that the test simply includes the pertinent API docs snippet for the question at hand, to avoid confusion.
https://developer.cisco.com/meraki/api-v1/update-network-wireless-ssid/
According to example in the study guide, for the v0 API the URL should be “https://api.meraki.com/api/v0” + “networks/{my_network}/ssids/{my_ssid_nr}”. So the script in the question is wrong or missing information to populate {my_ssid_nr}. But otherwise, based on the example in the study guide, the best answer I think is:
371767916
'PUT'
json.dumps(payload)
Overall though, the v0 API is end of support (https://developer.cisco.com/meraki/api/#!introduction/sunset-notice) so I hope the question has simply been removed.
1. 371767916
2. POST
3. json.dumps(payload)
Why POST?
First of all, the URL is wrong as it's missing "networks". It should be api/v0/networks/11111111/saids
The question says 11111111 is the network resource, not an SSID. We don't have the SSID number, so we need to create it with POST.
Why json.dumps(payload)? that's how you'd enter a dictionary in "data=" in your request. If it was "json=", you could've said json = payload.
This section is not available anymore. Please use the main Exam Page.350-901 Exam Questions
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
duracell
Highly Voted 2 years, 4 months agoudo2020
2 years, 3 months agotestingrealname
2 years agoexamtopicstroilevw
Most Recent 1 month, 3 weeks agoballastleaf8
10 months, 2 weeks agoJCGO
9 months, 3 weeks agoTeringzooi
1 year, 7 months agoNetGirl
1 year, 7 months agoTeringzooi
1 year, 7 months agodesignated
1 year, 8 months agoferock
2 years agoferock
2 years ago