update_meeting
Modify Zoom meeting details such as topic, type, start time, duration, timezone, password, agenda, and settings using the meeting ID with structured validation and authentication.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agenda | No | Meeting description | |
duration | No | Meeting duration in minutes | |
meeting_id | Yes | The meeting ID | |
password | No | Password | |
settings | No | Meeting settings | |
start_time | No | Meeting start time | |
timezone | No | Time zone | |
topic | No | Meeting topic | |
type | No | Meeting type |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"agenda": {
"description": "Meeting description",
"type": "string"
},
"duration": {
"description": "Meeting duration in minutes",
"type": "number"
},
"meeting_id": {
"description": "The meeting ID",
"type": "string"
},
"password": {
"description": "Password",
"type": "string"
},
"settings": {
"additionalProperties": true,
"description": "Meeting settings",
"properties": {},
"type": "object"
},
"start_time": {
"description": "Meeting start time",
"type": "string"
},
"timezone": {
"description": "Time zone",
"type": "string"
},
"topic": {
"description": "Meeting topic",
"type": "string"
},
"type": {
"description": "Meeting type",
"maximum": 8,
"minimum": 1,
"type": "number"
}
},
"required": [
"meeting_id"
],
"type": "object"
}