nerdexam
Cisco

300-920 · Question #10

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…

The correct answer is D. xapi.command('Dial', { Number: '[email protected]'}). In the jsxapi library (Cisco's JavaScript API for Webex/video room devices), the correct method to initiate a call is xapi.command('Dial', { Number: '<address>' }). The command name must be Dial - not Call (option B) or SIP (option C), as those are not valid jsxapi command…

Devices

Question

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 [email protected]? A. B. C. D.

Exhibit

300-920 question #10 exhibit

Options

How the community answered

(13 responses)
  • A
    15% (2)
  • B
    8% (1)
  • C
    8% (1)
  • D
    69% (9)

Explanation

In the jsxapi library (Cisco's JavaScript API for Webex/video room devices), the correct method to initiate a call is xapi.command('Dial', { Number: '<address>' }). The command name must be Dial - not Call (option B) or SIP (option C), as those are not valid jsxapi command names. The parameter key must be Number - not Endpoint (option A). Option A uses the right command (Dial) but the wrong parameter name (Endpoint). Option D correctly combines Dial as the command with Number as the parameter key holding the SIP address.

Topics

#jsxapi#Webex Devices#Making Calls#xAPI Commands

Community Discussion

No community discussion yet for this question.

Full 300-920 Practice