300-835 · Question #73
What is the primary purpose of the POST /v1/meetings function of the Webex Meetings REST API?
The correct answer is C. to schedule a new meeting. POST /v1/meetings follows standard REST conventions where POST creates a new resource - in this case, a scheduled meeting with a defined start time, title, and settings. Options A (joining) and D (starting instant meetings) are actions against an existing meeting, which would…
Question
Options
- Ato join an ongoing meeting
- Bto cancel a meeting
- Cto schedule a new meeting
- Dto start an instant meeting
How the community answered
(37 responses)- A3% (1)
- B5% (2)
- C89% (33)
- D3% (1)
Explanation
POST /v1/meetings follows standard REST conventions where POST creates a new resource - in this case, a scheduled meeting with a defined start time, title, and settings. Options A (joining) and D (starting instant meetings) are actions against an existing meeting, which would use different endpoints or parameters. Option B (canceling) is a destructive action typically handled by DELETE /v1/meetings/{meetingId}. Memory tip: In REST APIs, POST = "create something new," so POST /v1/meetings = create (schedule) a new meeting - if you remember that POST births resources, C is the only logical answer.
Topics
Community Discussion
No community discussion yet for this question.