delete_meeting_recordings
Remove Zoom meeting recordings by specifying the meeting ID and action (trash or delete permanently) using the dedicated tool in the Zoom API MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | No | Delete action (trash: move to trash, delete: delete permanently) | |
meeting_id | Yes | The 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"
}