POST api/zoom/CreateMeeting

Request Information

URI Parameters

None.

Body Parameters

ZoomMeetingRequest
NameDescriptionTypeAdditional information
topic

string

None.

type

integer

None.

start_time

string

None.

duration

integer

None.

timezone

string

None.

settings

ZoomMeetingSettings

None.

Request Formats

application/json, text/json

Sample:
{
  "topic": "sample string 1",
  "type": 2,
  "start_time": "sample string 3",
  "duration": 4,
  "timezone": "sample string 5",
  "settings": {
    "join_before_host": true,
    "mute_upon_entry": true,
    "approval_type": 3,
    "registration_type": 4
  }
}

application/xml, text/xml

Sample:
<ZoomController.ZoomMeetingRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GLAWebAPI.Controllers">
  <duration>4</duration>
  <settings>
    <approval_type>3</approval_type>
    <join_before_host>true</join_before_host>
    <mute_upon_entry>true</mute_upon_entry>
    <registration_type>4</registration_type>
  </settings>
  <start_time>sample string 3</start_time>
  <timezone>sample string 5</timezone>
  <topic>sample string 1</topic>
  <type>2</type>
</ZoomController.ZoomMeetingRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.