Free 200-901 Exam Braindumps (page: 30)

Page 29 of 132

Which two items are Cisco DevNet resources? (Choose two.)

  1. TAC Support
  2. Software Research
  3. API Documentation
  4. Bitbucket
  5. Sandbox

Answer(s): C,E


Reference:

https://developer.cisco.com/



FILL BLANK
Fill in the blanks to complete the Python script to update the Webex Teams membership of a room using the Python requests library.

import requests
url = “https://api.ciscospark.com/v1/memberships/Y2lzY29zcGFyazov379971079INISVAvOTJiM2RkOWEtNjc1ZC00YTQxLThjNDEtMmFiZGY4OWY0NGY0OjExNzJkNmYwLTJIYzMtMTFIOS1iOWI3LWNmMjg3MTJhYTkzNw”
my_token = “AbCdEf123456”

payload = “{\n \”isModerator\”: true\n}”
headers = {
‘Authorization’: ‘Bearer’ + my_token,
‘Content-Type’: ‘application/json’
}
response = requests. ___________ (“PATCH”, url, headers= ___________, data = ____________ )
print(response.text.encode(‘utf8’))

  1. See Explanation section for answer.

Answer(s): A

Explanation:

response = requests.request(“PATCH”, url, headers= headers, data = payload ) print(response.text.encode(‘utf8’))



While developing a real-time VoIP application on a Cisco Webex Teams platform, users report that their voice gets chopped or parts of the conversation drops out. Which network constraint is impacting the application?

  1. jitter
  2. capacity
  3. delay
  4. latency

Answer(s): A



FILL BLANK
Refer to the exhibit.


Fill in the blank to complete the query parameter and value so that the result set is returned in reverse chronological order (most recent first) based on when messages were posted to those rooms.

HTTP GET /v1/rooms ____________

  1. See Explanation section for answer.

Answer(s): A

Explanation:

GET/v1/rooms{?teamId,type,sortBy,max}


Reference:

https://developer.webex.com/docs/api/v1/rooms/list-rooms






Post your Comments and Discuss Cisco® 200-901 exam with other Community members:

200-901 Discussions & Posts