Zoom API MCP Server

create_zoom_room_location

Define Zoom Room locations with specific types and hierarchies using structured inputs, ensuring accurate organization and management of rooms across the Zoom platform.

Input Schema

NameRequiredDescriptionDefault
nameYesLocation name
parent_location_idNoParent location ID
typeYesLocation type

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "name": { "description": "Location name", "type": "string" }, "parent_location_id": { "description": "Parent location ID", "type": "string" }, "type": { "description": "Location type", "enum": [ "country", "state", "city", "campus", "building", "floor" ], "type": "string" } }, "required": [ "name", "type" ], "type": "object" }
ID: h6x0sr1f0c