zoom_get_recording_details
Retrieve detailed metadata and file information for a specific Zoom meeting recording using a meeting ID and access token, simplifying recording management and access.
Instructions
Get detailed information about a specific Zoom meeting recording including recording files and metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
meeting_id | Yes | The Zoom meeting ID to retrieve recording details for | |
zoom_access_token | Yes | Zoom OAuth2 access token |
Input Schema (JSON Schema)
{
"properties": {
"meeting_id": {
"description": "The Zoom meeting ID to retrieve recording details for",
"type": "string"
},
"zoom_access_token": {
"description": "Zoom OAuth2 access token",
"type": "string"
}
},
"required": [
"zoom_access_token",
"meeting_id"
],
"type": "object"
}