Certs Vault
See all results for ""
Home Exams
CRISC ISACA CISSP ISC2 200-301 Cisco SY0-701 CompTIA AZ-104 Microsoft AI-900 Microsoft AIGP IAPP 1Z0-1067-26 Oracle View All Exams →
Sign in Create account

Developing Applications for Cisco Webex and Webex Devices 300-920 Exam Questions

Preparing for the 300-920 exam is simple with Certs Vault. We offer easy-to-understand study materials that help you learn the most important exam topics. You can study using our PDF questions, practice online with a real exam-style test, or use the desktop practice software. Choose the study method that works best for you and prepare at your own pace.

At Certs Vault, we keep our 300-920 practice questions up to date. Whenever the exam syllabus or objectives change, we update our study materials so you always learn the latest topics. This helps you save time, avoid outdated content, and feel more confident when you take your exam.

Download Exam View Entire Exam
Page: 1 / 1
Question #1 (Topic: demo questions)

Which REST API request is used to list all the Webex Room Kit devices within a large organization so that a new custom In-Room Control can be deployed on all the devices?

var request = require("request");

var options = { method: 'GET',

    url: 'https://api.ciscospark.com/v1/devices',

    qs: { product: 'Roomkit' },

    headers:

     { 'Content Type': 'application/json',

       Authorization: 'Bearer Yz6FgoWx7Pgb57C9z' }};


request(options, function(error, reponse, body) {

    if (error) throw new Error(error);

    console.log(body);

});

var request = require("request");

var options = { method: 'GET',

    url: 'https://api.ciscospark.com/v1/devices',

    qs: { product: 'Roomkit', placeID: 'Yzb60gRx3kBq5iB2w' },

    headers:

     { 'Content Type': 'application/json',

       Authorization: 'Bearer Yz6FgoWx7Pgb57C9z' }};


request(options, function(error, reponse, body) {

    if (error) throw new Error(error);

    console.log(body);

});

var request = require("request");

var options = { method: 'GET',

    url: 'https://api.ciscospark.com/v1/devices/Yzb60gRx3kBq5iB2w',

    qs: { deviceName: 'Roomkit' },

    headers:

     { 'Content Type': 'application/json',

       Authorization: 'Bearer Yz6FgoWx7Pgb57C9z' }};


request(options, function(error, reponse, body) {

    if (error) throw new Error(error);

    console.log(body);

});

var request = require("request");

var options = { method: 'GET',

    url: 'https://api.ciscospark.com/v1/devices',

    qs: { upgradeChannel: 'Roomkit' },

    headers:

     { 'Content Type': 'application/json',

       Authorization: 'Bearer Yz6FgoWx7Pgb57C9z' }};


request(options, function(error, reponse, body) {

    if (error) throw new Error(error);

    console.log(body);

});

A.
Option A
B.
Option B
C.
Option C
D.
Option D
Correct Answer: A
Explanation:
The qs: option is required to list all roomkit devices. Product: ‘RoomKit’ is the correct option because it will list all roomkit devices.
Question #2 (Topic: demo questions)

Which expression is a valid Webex Teams webhook filter?

A.
personEmail=person@example.com+roomId=abc123
B.
personEmail=person@example.com-roomId=abc123
C.
personEmail=person@example.com&roomId=abc123
D.
personEmail=person@example.com,roomId=abc123
Correct Answer: C
Explanation:
You can also use more than one filter in a webhook. To use multiple filters, combine them with the “&” symbol. For example, to create a webhook that only sends notifications when a specific person performs an action in a specific room, such as sending a message or creating a membership, combine the personEmail and roomId filters. Reference:
Question #3 (Topic: demo questions)

A developer must construct an HTTP Request to use the XML API to set a Personal Meeting Room PIN for a given user. Which code completes the code to create the request? 

A.
xmlhttp.open(“GET”, “https://cisco.webex.com/WBXService/XMLService”);
B.
xmlhttp.open(“PATCH”, “https://cisco.webex.com/WBXService/XMLService”)
C.
. xmlhttp.open(“PUT”, “https://cisco.webex.com/WBXService/XMLService”);
D.
xmlhttp.open(“POST”, “https://cisco.webex.com/WBXService/XMLService”);
Correct Answer: A
Explanation:
The post method can be used for HTTP request that sets up a personal metting room PIN for a user. 
Download Exam
Page: 1 / 1
Next Page