Cisco
350-901 · Question #1
Refer to the exhibit. Which configuration of method and parameter retrieves the health of a laptop connected to the network from Cisco DNA Center? import http.client conn = http.client.HTTPSConnection
Sign in or unlock 350-901 to reveal the answer and full explanation for question #1. The question stem and answer options stay visible for context.
Cisco Platforms and Development
Question
Refer to the exhibit. Which configuration of method and parameter retrieves the health of a laptop connected to the network from Cisco DNA Center?
import http.client
conn = http.client.HTTPSConnection("dnac.cisco.com")
headers = {
'_runsync': "true",
'_timeout': "30",
'_persistbapioutput': "true",
}
conn.request(" ", "/dna/intent/api/v1/ ?timestamp=10000", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Options
- APUT; network-health;
- BGET; client-health;
- CGET; network-device;
- DPOST; network-device;
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
#Cisco DNA Center API#REST API Methods#Network Health Monitoring#Python http.client