list_meetings
Retrieve paginated meeting recordings with filtering by date, teams, or attendees, and optional content inclusion like action items and CRM matches.
Instructions
Retrieve paginated meetings with filtering and optional content inclusion (action items, CRM matches).
Examples: list_meetings() # Get all meetings (paginated) list_meetings(created_after="2024-01-01T00:00:00Z") # Meetings after specific date list_meetings(teams=["Sales", "Engineering"]) # Filter by specific teams list_meetings(calendar_invitees=["john.doe@company.com", "jane.smith@client.com"]) # Filter by specific attendees list_meetings(calendar_invitees_domains=["company.com", "client.com"]) # Filter by attendee domains
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| calendar_invitees | No | Filter by invitee emails | |
| calendar_invitees_domains | No | Filter by domains | |
| created_after | No | ISO timestamp filter | |
| created_before | No | ISO timestamp filter | |
| cursor | No | Pagination cursor | |
| include_action_items | No | Include action items | |
| include_crm_matches | No | Include CRM matches | |
| per_page | No | Number of results per page (default: 50) | |
| recorded_by | No | Filter by recorder emails | |
| teams | No | Filter by team names |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||