nerdexam
Cisco

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…

Cisco Webex API

Question

What is the primary purpose of the POST /v1/meetings function of the Webex Meetings REST API?

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)
  • A
    3% (1)
  • B
    5% (2)
  • C
    89% (33)
  • D
    3% (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

#Webex Meetings API#POST /v1/meetings#Meeting scheduling

Community Discussion

No community discussion yet for this question.

Full 300-835 Practice