get_zoom_room
Retrieve detailed information about a specific Zoom Room using its unique ID. Part of the Zoom API MCP Server, this tool ensures structured access and validation for managing Zoom resources.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
room_id | Yes | The Zoom Room ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"room_id": {
"description": "The Zoom Room ID",
"type": "string"
}
},
"required": [
"room_id"
],
"type": "object"
}