QuestionQ275
Understanding and Using APIsDrag the code options into the missing boxes to obtain a list of network devices by using the Cisco Meraki API. Not all options are used.
Drag & Drop
teams
networks
devices
GET
POST
encrypt
encode
import requests url = "https://api.meraki.com/api/v0//{{networkId}}/" payload = {} headers = { 'Accept': '*/*' } response = requests.request("", url, headers=headers, data=payload) print(response.text.('utf8'))
Community Discussion