zoom_get_meeting_transcript
Retrieve transcript files and content from a specific Zoom meeting recording using an OAuth2 access token and meeting ID.
Instructions
Get transcript files and content from a specific Zoom meeting recording if available
Input Schema
Name | Required | Description | Default |
---|---|---|---|
meeting_id | Yes | The Zoom meeting ID to retrieve transcript for | |
zoom_access_token | Yes | Zoom OAuth2 access token |
Input Schema (JSON Schema)
{
"properties": {
"meeting_id": {
"description": "The Zoom meeting ID to retrieve transcript for",
"type": "string"
},
"zoom_access_token": {
"description": "Zoom OAuth2 access token",
"type": "string"
}
},
"required": [
"zoom_access_token",
"meeting_id"
],
"type": "object"
}