get_a_meeting_details
Retrieve comprehensive details of a Zoom meeting by its ID using the Zoom MCP Server. Simplify meeting information management with structured output for efficient tracking and organization.
Instructions
Retrieve the meeting's details with a given ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the meeting. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the meeting.",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}