Practice Free 300-835 Exam Online Questions
Refer to the exhibit.

An engineer needs to retrieve a list of devices that are xAPI enabled using Webex devices xAPIs with access token 111111111AAAAaaaaaa11111aaA.
To complete the python request, which line of code must be added to the box where the code is missing?
- A . ‘Authorization: Token 111111111AAAAaaaaaa11111aaA’
- B . ‘Authorization: OAuth Token 111111111AAAAaaaaaa11111aaA’
- C . ‘Authorization: Bearer 111111111AAAAaaaaaa11111aaA’
- D . ‘Authorization: AccessToken 111111111AAAAaaaaaa11111aaA‘
C
Explanation:
Explanation
Webex APIs (including xAPI access through Webex Cloud) require the use of an OAuth 2.0 Bearer token in the Authorization header.
The correct format is:
headers = {
‘Authorization’: ‘Bearer 111111111AAAAaaaaaa11111aaA’
}
This ensures the API call is authenticated correctly using the access token provided.
Which type of token is required for authenticating requests to the Webex Meetings REST API?
- A . API token
- B . client token
- C . access token
- D . refresh token
C
Explanation:
The Webex Meetings REST API requires an access token for authentication.
This token is obtained through the Webex OAuth 2.0 flow and must be included in the Authorization header of API requests in the form:
Authorization: Bearer <access_token>
Which Cisco UCM programming interface provides data that is needed to compile a report of call volume, trunk utilization, and cost and billing estimates?
- A . Perfmon SOAP API
- B . JTAPI
- C . CDRonDemandAPI
- D . RisPort70 SOAP API
C
Explanation:
The CDRonDemand API provides access to Call Detail Records (CDRs) and Call Management Records (CMRs) from Cisco UCM. These records are essential for generating reports related to call volume, trunk utilization, and cost/billing estimates.
Which two scenarios could be automated by combining the Webex Meetings XML API with other API-enabled systems? (Choose two.)
- A . scheduling new-hire orientation meetings as part of an HR system workflow
- B . triggering Webex meeting recording when the host disconnect from the meeting.
- C . automatically launching the weekly Webex scrum meeting on Mondays at 9 AM
- D . reassigning an employee’s scheduled Webex meeting to their manager then they leave the company
- E . muting users in a Webex meeting when their Cisco Jabber presence status transitions to Away
DRAG DROP
Drag and drop the code snippets from the bottom onto the blanks in the script that sends the Server Down message to User One at [email protected] and to the CLAUTONOC space with room ID A1bcA1 by using Cisco Webex. Not all options are used.

Explanation:
‘Authorization’ is required header for authenticating API requests.
‘Content-Type’ specifies the format of the request body (JSON).
‘toPersonEmail’ is used to send a message to a specific person via their email.
‘roomId’ is used to send a message to a specific space (room) using its ID.
Refer to the exhibit.

A Webex Meetings XML API HTTP request message with several invalid portions is shown.
Which reference points to a line in the exhibit that correctly indicates that this is a LstsummaryUser request?
- A . line 17
- B . line 1
- C . line 18
- D . line 14
After the AXL query ns:updatePhone is used to upgrade a phone configuration successfully, the phone does not reflect the change.
Which other method must be performed for the change to take effect?
- A . ns:getPhone
- B . ns:restartPhone
- C . ns:rebootPhone
- D . ns:savePhone
What are two keys features of Cisco Unified Communications Manager Serviceability APIs? (Choose two.)
- A . save alarms and events for troubleshooting
- B . connect to serial console on phone hardware
- C . configure firewall rules on phone hardware
- D . scan servers and devices for malware
- E . real-time monitoring of components
DRAG DROP
Refer to the exhibit.

Drag and drop the code snippets from the bottom onto the blanks in the Python script to monitor how many people are in Room 70 by using xAPI and RoomAnalytics. Not all options are used.

Explanation:
The function is named count_people() ― matching the intended behavior.
format() is used to inject environment variables into the URL and Authorization header.
The GET method is appropriate for retrieving data via xAPI.
response.text is parsed as XML for the people count reading.
DRAG DROP
The Python script executes a REST API to retrieve information from the Cisco Meeting Server about the call with an identifier of “987654321”.
Drag and drop the code onto the snippet to complete the Python script. Not all options are used.


