300-835 · Question #15
Refer to the exhibit. Alice is a Webex Meetings admin for her organization. Which code snippet completes a Webex Meetings XML API request that returns all users?
The correct answer is A. <body><bodyContent xsi:type="java:com.webex.service.binding.user.GetUser"> <webExID></webExID> </bodyContent></body>. Option A uses GetUser with an empty <webExID> tag, which in the Webex Meetings XML API signals the system to return all users rather than a specific one - leaving the ID blank acts as a wildcard to retrieve the full user list. Why the distractors fail: B and D both use…
Question
Options
- A<body><bodyContent xsi:type="java:com.webex.service.binding.user.GetUser"> <webExID></webExID> </bodyContent></body>
- B<body><bodyContent xsi:type="java:com.webex.service.binding.user.LstsummaryUser"> <webExID></webExID> </bodyContent></body>
- C<body><bodyContent xsi:type="java:com.webex.service.binding.user.GetUser"> </bodyContent></body>
- D<body><bodyContent xsi:type="java:com.webex.service.binding.user.LstsummaryUser"> <webExID></webExID> </bodyContent></body>
How the community answered
(43 responses)- A81% (35)
- B2% (1)
- C12% (5)
- D5% (2)
Explanation
Option A uses GetUser with an empty <webExID> tag, which in the Webex Meetings XML API signals the system to return all users rather than a specific one - leaving the ID blank acts as a wildcard to retrieve the full user list.
Why the distractors fail:
- B and D both use
LstsummaryUser, which returns only a summary of user data (not full user records), and notably B and D appear identical in this question - suggesting a possible transcription error in the exhibit. - C uses
GetUserbut omits the<webExID>element entirely; the empty tag in A is required as a parameter placeholder to trigger the all-users query, whereas C's missing element may cause the request to fail or return an error.
Memory tip: Think "Get = Retrieve all when ID is empty" - in Webex XML API, supplying an empty <webExID></webExID> to GetUser is the explicit pattern for bulk retrieval, while LstsummaryUser gives you a lightweight roster without full profile data.
Note: The identical wording of choices B and D is a red flag suggesting this question may contain a transcription error from the original exhibit. In real Webex XML API usage,
LstsummaryUseris commonly used for listing users, so verify this against your official study materials.
Topics
Community Discussion
No community discussion yet for this question.