download_meeting_data
Retrieve meeting transcripts and summaries from Read.AI using the meeting ID to access and analyze recorded discussions.
Instructions
Download meeting transcript and/or summary from Read.AI.
Args:
meeting_id: Read.AI meeting ID
include_transcript: Whether to download the full transcript (default: True)
include_summary: Whether to download the meeting summary (default: True)
Returns:
Meeting data in formatted text or JSON structure
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_summary | No | ||
include_transcript | No | ||
meeting_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"include_summary": {
"default": true,
"title": "Include Summary",
"type": "boolean"
},
"include_transcript": {
"default": true,
"title": "Include Transcript",
"type": "boolean"
},
"meeting_id": {
"title": "Meeting Id",
"type": "string"
}
},
"required": [
"meeting_id"
],
"title": "download_meeting_dataArguments",
"type": "object"
}