Developing Applications for Cisco Webex and Webex Devices (DEVWBX) — Question 21
Which XML snippet does an admin use with a Webex Meetings XML API request to retrieve info on multiple users?
Answer options
- A. <bodyContent xsi:type="java:com.webex.service.binding.user.GetUser"> <webExId>.*</webExId> </bodyContent>
- B. <bodyContent xsi:type="java:com.webex.service.binding.user.LstsummaryUser"> <webExId>.*</webExId> </bodyContent>
- C. <bodyContent xsi:type="java:com.webex.service.binding.user.GetUser"> </bodyContent>
- D. <bodyContent xsi:type="java:com.webex.service.binding.user.LstsummaryUser"> </bodyContent>
Correct answer: A
Explanation
The correct answer is A because it includes the required parameter <webExId>.*</webExId>, which allows for the retrieval of information on multiple users. Option B also uses LstsummaryUser, but without the necessary parameter for multiple user retrieval. Options C and D do not provide the <webExId> parameter, making them insufficient for the task.