CiscoCisco
300-835 · Question #63
300-835 Question #63: Real Exam Question with Answer & Explanation
``python url = "https://10.10.20.160/putxml" payload = """ <Command> <Dial command="True"> <Number>408723</Number> </Dial> </Command> """ headers = { 'Content-Type': 'text/xml' } response = requests.request("POST", url, headers=headers, data=payload) print(response.text.encode('u
Collaboration Endpoints
Question
An administrator must test a Cisco collaboration room device. Drag and drop the code snippets from the bottom onto the blanks in the code to perform a test call using the xAPI. Some options may be used more than once. Not all options are used.
Explanation
url = "https://10.10.20.160/putxml"
payload = """
<Command>
<Dial command="True">
<Number>408723</Number>
</Dial>
</Command>
"""
headers = {
'Content-Type': 'text/xml'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text.encode('utf8'))
Topics
#xAPI#Collaboration Endpoints#Device Management#API Automation
Community Discussion
No community discussion yet for this question.