Practice Free 300-835 Exam Online Questions
What is a capability of the Macro Editor on a Cisco Webex Device?
- A . It supports multiple programming languages.
- B . It deploys new macros after restarting the application.
- C . It deactivates macros at any time.
- D . It supports keyboard shortcuts that are configured through the web UI.
C
Explanation:
The Macro Editor on Cisco Webex Devices allows administrators to activate or deactivate macros at any time without restarting the device or the application. This provides flexibility for controlling script behavior during runtime
DRAG DROP
Refer to the exhibit.

A bot is receiving notifications such as the one displayed in the exhibit.
Drag and drop the code onto the snippet to complete the API request that was sent to Webex Teams so that the bot will receive these notifications. Not all options are used.


DRAG DROP
Drag and drop the code snippets from the bottom onto the blanks in the code to implement a call using the Cisco Webex REST API to retrieve 10 messages in an organization created between October 10th 2019 and October 12th 2019. Not all options are used.

Explanation:
The HTTP method must be GET since data is being retrieved.
resource=messages specifies the resource type.
type=created filters for events when messages were created.
from sets the start timestamp, and to indicates the end timestamp.
Even if &to isn’t the official parameter, it is the correct choice because until can’t be placed correctly without a matching &.
This retrieves up to 10 messages created within the specified time window.
Refer to the exhibit.

The exhibit shows the XML schema to associate a device for the AddUser operation in AXL.
Which XML snippet is correct to associate a device with name “SEP151515151515”?
A)
![]()
B)

C)

D)
![]()
- A . Option A
- B . Option B
- C . Option C
- D . Option D
Refer to the exhibit.

Based on the schema diagram in the exhibit, which two XML objects are valid AXL <getPhone> request <Body> elements? (Choose two.)
A)

B)

C)

D)

E)

- A . Option A
- B . Option B
- C . Option C
- D . Option D
- E . Option E
DRAG DROP
Drag and drop the code to add a Webex Teams Space Widget in an existing HTML page. Not all items are used.


An In-Room Control Panel can be configured as “global” (always available).
Which order panel type is supported?
- A . Background
- B . Do Not Disturb
- C . Never
- D . Out-of-Call
DRAG DROP
Refer to the exhibit.

Drag and drop the code snippets from the bottom onto the blanks in the code to construct a Python script for Cisco UCM that provisions directory numbers. Not all options are used.

Explanation:
Session is used for handling HTTP connections with authentication.
HTTPBasicAuth provides credentials to the UCM.
service.addLine calls the correct AXL method for provisioning a directory number (DN) in Cisco Unified Communications Manager.
DRAG DROP
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:
The endpoint /putxml is used to send xAPI commands to Cisco room devices.
<Command><Call><Dial> initiates a call to the specified number using xAPI.
The request uses the POST method with text/xml content type.
DRAG DROP
Drag and drop the code snippets from the bottom onto the blanks in the code to create a Cisco Webex CreateMeeting API request. Not all options are used.

Explanation:
XMLService is appended to the Webex endpoint URL ― the full service path is https://api.webex.com/WBXService/XMLService when using XML
APIs.
version is used to specify the XML declaration (e.g., <?xml version="1.0"…>).
bodyContent is correct tag name under <body> when creating a meeting using XML API.
application/xml is the correct content type for XML-based requests to Webex APIs.
