Zoom API MCP Server

delete_recording_file

Remove Zoom meeting recordings by specifying the meeting and recording IDs. Choose to either trash or permanently delete files to manage storage effectively.

Input Schema

NameRequiredDescriptionDefault
actionNoDelete action (trash: move to trash, delete: delete permanently)
meeting_idYesThe meeting ID
recording_idYesThe recording 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" }, "recording_id": { "description": "The recording ID", "type": "string" } }, "required": [ "meeting_id", "recording_id" ], "type": "object" }
ID: h6x0sr1f0c