Zoom API MCP Server

delete_meeting_recordings

Remove or permanently delete Zoom meeting recordings by specifying the meeting ID and action type (trash or delete) using the Zoom API MCP Server.

Input Schema

NameRequiredDescriptionDefault
actionNoDelete action (trash: move to trash, delete: delete permanently)
meeting_idYesThe meeting ID

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "action": { "description": "Delete action (trash: move to trash, delete: delete permanently)", "enum": [ "trash", "delete" ], "type": "string" }, "meeting_id": { "description": "The meeting ID", "type": "string" } }, "required": [ "meeting_id" ], "type": "object" }
ID: h6x0sr1f0c