list_recordings
Fetch Zoom meeting recordings by user ID within a specified date range, retrieve paginated results, and manage data efficiently using the MCP Server's Zoom API integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Start date in 'yyyy-MM-dd' format | |
next_page_token | No | Next page token | |
page_size | No | Number of records returned | |
to | No | End date in 'yyyy-MM-dd' format | |
user_id | Yes | The user ID or email address |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from": {
"description": "Start date in 'yyyy-MM-dd' format",
"type": "string"
},
"next_page_token": {
"description": "Next page token",
"type": "string"
},
"page_size": {
"description": "Number of records returned",
"maximum": 300,
"minimum": 1,
"type": "number"
},
"to": {
"description": "End date in 'yyyy-MM-dd' format",
"type": "string"
},
"user_id": {
"description": "The user ID or email address",
"type": "string"
}
},
"required": [
"user_id"
],
"type": "object"
}