live chatMcAfee Secure sites help keep you safe from identity theft, credit card fraud, spyware, spam, viruses and online scams
Pass4Test 10%OFF Discount Code

Cisco Automating and Programming Cisco Collaboration Solutions - 300-835 Exam Questions

QUESTION NO: 1
Which type of token is required for authenticating requests to the Webex Meetings REST API?
Correct Answer: B
Explanation: Only visible for Pass4Test members. You can sign-up / login (it's free).
QUESTION NO: 2
Drag and Drop Question
Drag and drop the elements to create the command to initiate a call to [email protected] using the Webex Devices xAPI SSH Interface. Not all options are used.
Correct Answer:
QUESTION NO: 3
Which Cisco Meeting Server REST API object resource is used to retrieve active call information?
Correct Answer: A
QUESTION NO: 4
Which component is used to integrate a webpage into the Cisco Finesse agent desktop?
Correct Answer: B
Explanation: Only visible for Pass4Test members. You can sign-up / login (it's free).
QUESTION NO: 5
Drag and Drop Question
Drag and drop the code snippets from the bottom onto the blanks in the Python boxes to create a space and add users to the newly created space using Webex API. Not all options are used.
Correct Answer:

Explanation:
sysis imported to use sys.exit(1)on error.
postis used for creating both the space and memberships.
response.json()is used to extract the returned room ID.
headersis reused in both POST requests for authentication and content type.
QUESTION NO: 6
Drag and Drop Question
Drag and drop the code snippets from the bottom onto the blanks in the code to configure a new call bridge using the REST API. Not all options are used.
Correct Answer:

Explanation:
callBridgesis the REST endpoint used to configure or manage Call Bridges in Cisco Meeting Server.
Bearer is the correct prefix for the Authorization header when using a bearer token.
POSTis used to create a new resource (like a Call Bridge).
response.textis already a string. You can't decode a string - only bytes can be decoded. So encode is used to encode the response in UTF-8 for proper formatting.
QUESTION NO: 7
Drag and Drop Question
Drag and drop the code snippets from the bottom onto the blanks in the Python script to create an XMPP cluster using the Cisco Meeting Server API. Not all options are used.
Correct Answer:

Explanation:
url, headers, and payloadare all used in the standard requests.request()call.
- url points to the XMPP configuration API on Cisco Meeting Server.
- headersinclude authentication and content type.
- payloadcontains the data for creating the XMPP cluster.
response.textprints the raw response body for visibility.