create_meeting
Schedule or initiate a Zoom meeting by defining agenda, topic, start time, and timezone. Configure details to set up a meeting instantly or for a future date, adjusting timezone as needed.
Instructions
Create a meeting
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agenda | No | The meeting's agenda. | New Meeting's agenda |
start_time | No | The meeting's start time. This supports local time and GMT formats.To set a meeting's start time in GMT, use the yyyy-MM-ddTHH:mm:ssZ date-time format. For example, 2020-03-31T12:02:00Z. To set a meeting's start time using a specific timezone, use the yyyy-MM-ddTHH:mm:ss date-time format and specify the timezone ID in the timezone field. If you do not specify a timezone, the timezone value defaults to your Zoom account's timezone. You can also use UTC for the timezone value. Note: If no start_time is set for a scheduled meeting, the start_time is set at the current time and the meeting type changes to an instant meeting, which expires after 30 days. current time is 2025-08-18T14:20:49.346Z. | |
timezone | No | Timezone for the meeting's start time. The Current timezone is UTC. | |
topic | No | The meeting's topic. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"agenda": {
"default": "New Meeting's agenda",
"description": "The meeting's agenda.",
"maxLength": 2000,
"type": "string"
},
"start_time": {
"description": "The meeting's start time. This supports local time and GMT formats.To set a meeting's start time in GMT, use the yyyy-MM-ddTHH:mm:ssZ date-time format. For example, 2020-03-31T12:02:00Z. To set a meeting's start time using a specific timezone, use the yyyy-MM-ddTHH:mm:ss date-time format and specify the timezone ID in the timezone field. If you do not specify a timezone, the timezone value defaults to your Zoom account's timezone. You can also use UTC for the timezone value. Note: If no start_time is set for a scheduled meeting, the start_time is set at the current time and the meeting type changes to an instant meeting, which expires after 30 days. current time is 2025-08-18T14:20:49.346Z.",
"type": "string"
},
"timezone": {
"description": "Timezone for the meeting's start time. The Current timezone is UTC.",
"type": "string"
},
"topic": {
"description": "The meeting's topic.",
"maxLength": 200,
"type": "string"
}
},
"type": "object"
}