Read the full details of a meeting. Use this when the user asks about a specific meeting by id; use listMeetings or searchMeetings to find one and listUpcomingMeetings for the next scheduled ones. Fetches a meeting by `{id}`. `summary_notes` is present when a summary exists; PRO+ callers get full text, FREE-tier callers get a truncated preview. A non-null `redirect_to_meeting_id` means the meeting was merged into another. Unknown or inaccessible ids return 404.
getMeetingRead the full details of a meeting. Use this when the user asks about a specific meeting by id; use listMeetings or searchMeetings to find one and listUpcomingMeetings for the next scheduled ones.
Fetches a meeting by {id}. summary_notes is present when a summary exists; PRO+ callers get full text, FREE-tier callers get a truncated preview. A non-null redirect_to_meeting_id means the meeting was merged into another. Unknown or inaccessible ids return 404.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Meeting ID |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Unique identifier for the meeting | |
| title | No | Title of the meeting | |
| status | No | Current status of the meeting | |
| end_time | No | Scheduled end time in RFC3339 format | |
| created_at | No | Timestamp when the meeting was created | |
| start_time | No | Scheduled start time in RFC3339 format | |
| updated_at | No | Timestamp when the meeting was last updated | |
| workspace_id | No | ID of the workspace this meeting belongs to | |
| summary_notes | No | AI-generated summary notes from the meeting. Only populated on the single-meeting GET; PRO+ callers receive the full summary while FREE-tier callers receive a truncated preview (first 200 characters) followed by an upgrade note. Omitted in list/search/upcoming views. | |
| owned_by_user_id | No | ID of the user who owns the meeting | |
| calendar_event_id | No | ID of the linked calendar event, if any | |
| created_by_user_id | No | ID of the user who created the meeting | |
| redirect_to_meeting_id | No | ID of the meeting to redirect to if this meeting was merged |