Cisco
300-920 · Question #20
300-920 Question #20: Real Exam Question with Answer & Explanation
Sign in or unlock 300-920 to reveal the answer and full explanation for question #20. The question stem and answer options stay visible for context.
Devices
Question
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? A. B. C. D.
Exhibits
Options
- Avar 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); });
- Bvar 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); });
- Cvar 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); });
- Dvar 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); });
Unlock 300-920 to see the answer
You've previewed enough free 300-920 questions. Unlock 300-920 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.
Topics
#Webex Devices#REST API#Device Listing#In-Room Control



