list_meetings_tool
Retrieve and filter meetings with optional transcripts, summaries, action items, and CRM data to organize and analyze recorded sessions.
Instructions
Retrieve a paginated list of meetings accessible to the API key. Supports filtering and optional inclusion of transcripts, summaries, action items, and CRM matches (where available).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
calendar_invitees | No | Filter by invitee emails | |
calendar_invitees_domains | No | Filter by domains | |
calendar_invitees_domains_type | No | Domain filter type (all, only_internal, one_or_more_external) | |
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 | |
include_summary | No | Include summary | |
include_transcript | No | Include transcript | |
recorded_by | No | Filter by recorder emails | |
teams | No | Filter by team names |
Input Schema (JSON Schema)
{
"properties": {
"calendar_invitees": {
"default": null,
"description": "Filter by invitee emails",
"items": {
"type": "string"
},
"type": "array"
},
"calendar_invitees_domains": {
"default": null,
"description": "Filter by domains",
"items": {
"type": "string"
},
"type": "array"
},
"calendar_invitees_domains_type": {
"default": null,
"description": "Domain filter type (all, only_internal, one_or_more_external)",
"type": "string"
},
"created_after": {
"default": null,
"description": "ISO timestamp filter",
"type": "string"
},
"created_before": {
"default": null,
"description": "ISO timestamp filter",
"type": "string"
},
"cursor": {
"default": null,
"description": "Pagination cursor",
"type": "string"
},
"include_action_items": {
"default": null,
"description": "Include action items",
"type": "boolean"
},
"include_crm_matches": {
"default": null,
"description": "Include CRM matches",
"type": "boolean"
},
"include_summary": {
"default": null,
"description": "Include summary",
"type": "boolean"
},
"include_transcript": {
"default": null,
"description": "Include transcript",
"type": "boolean"
},
"recorded_by": {
"default": null,
"description": "Filter by recorder emails",
"items": {
"type": "string"
},
"type": "array"
},
"teams": {
"default": null,
"description": "Filter by team names",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}