DRAG DROP
Drag and drop the code to complete the JavaScript to display the first URL from a user's list of Webex Meetings recordings. Not all options are used.
Select and Place:

DRAG DROP Refer to the exhibit. A training coordinator must post links to Webex recordings on a company SharePoint site. This is usually a manual process, but a DevOps engineer wants to automate it using Webex XML APIs. After a sucessful LstRecording call wrapped in xml2js, the ‘console dir(result)’ output is shown in the exhibit. Using ‘dot notation’, drag and drop the code below onto the code snippet to output the streamURL for each recording.

Select and Place:

What happens if a meeting is in progress when a DelMeeting request is sent in the Webex Meetings XML API?
A. The meeting host is notified and prompted to allow the meeting to be deleted.
B. The DelMeeting request drops all call-in users and deletes the meeting.
C. The DelMeeting request waits until the meeting is completed and then deletes the meeting.
D. The DelMeeting request results in an error.

Refer to the exhibit. What causes the error message?
A. xapi must be enabled for promises.
B. HttpClient AllowInsecureHTTPS has not been enabled.
C. The NODE_TLS_REJECT_UNAUTHORIZED environment variable must be set to 0.
D. HttpClient must be changes to HttpsClient.
Which xAPI access mechanism requires separate connections for commands and notifications?
A. Serial
B. WebSocket
C. HTTP/HTTPS
D. SSH
With CE 9.8 and above, which two statements are correct when an application is sending and receiving data over a connection established with an xAPI interface? (Choose two.)
A. All Serial, SSH, and WebSockets can be used to send and receive data.
B. HttpClient can be used to send requests but not receive responses.
C. HttpFeedback is the only option to receive data.
D. The HttpClient command can be used to send requests and read responses over HTTP.
E. WebSockets is the only option to send and receive data.
A company wants to adopt Webex Teams as a messaging platform and use REST APIs to automate the creation of teams and rooms. Which sequence of REST API requests is needed to create and populate a new Webex team and create a populated Webex room for the team?
A. POST /teams, POST /memberships, POST /rooms
B. POST /teams, POST /people, POST /rooms
C. POST /teams, POST /team/memberships, POST /rooms
D. POST /teams, POST /team/memberships, POST /rooms, POST /memberships

Refer to the exhibit.Which code completes the return statement that initiates local screen sharing on the active meeting?
A. activeMeeting.updateShare({ sendShare: true receiveShare: true, stream: null
})
B. activeMeeting.updateShare({ sendShare: true receiveShare: false, stream: remoteShare })
C. activeMeeting.updateShare({ sendShare: true receiveShare: true, stream: localShare })
D. activeMeeting.updateShare({ sendShare: false receiveShare: false, stream: null })
Which two statements are true when comparing the SSH, HTTP, and WebSocket interfaces of a Cisco Collaboration device? (Choose two.)
A. The SSH interface supports XML payloads only.
B. The SSH, HTTP, and WebSocket interfaces support JSON and XML payloads.
C. The HTTP interface supports JSON and XML payloads.
D. Communications can be encrypted for all SSH, HTTP, and WebSocket interfaces.
E. The WebSocket interface supports JSON payloads only.

Refer to the exhibit. Assume that there is already a connection to a device for this jsxapi.code snippet. Which snippet completes the code so that the connected device makes a call to the user jdoe@example.com?

A. Option A
B. Option B
C. Option C
D. Option D