GET {{baseUrl}}/meetings/meeting_summaries?page_size=30&next_page_token=<string>&from=<dateTime>&to=<dateTime>
Generates a list of all meeting summaries for an account. Prerequisites
* Host user type must be Pro or higher plan.
* The Meeting Summary with AI Companion feature enabled in the host's account.
* E2ee meetings do not have summary feature enabled. Scopes: Rate Limit Label: meeting_summary:read:admin
MEDIUM
Body
PARAM
Key | Datatype | Required | Description |
page_size
|
number | The number of records returned within a single API call. | |
next_page_token
|
string | The next page token paginates through a large set of results. A next page token returns whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes. | |
from
|
string | The start date in `yyyy-MM-dd'T'HH:mm:ss'Z'` UTC format used to retrieve the creation date range of the meeting summaries. | |
to
|
string | The end date in `yyyy-MM-dd'T'HH:mm:ss'Z'` UTC format used to retrieve the creation date range of the meeting summaries. |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"page_size": 30,
"next_page_token": "<string>",
"from": "<dateTime>",
"to": "<dateTime>",
"summaries": [
{
"meeting_host_id": "<string>",
"meeting_host_email": "<email>",
"meeting_uuid": "<string>",
"meeting_id": "<long>",
"meeting_topic": "<string>",
"meeting_start_time": "<dateTime>",
"meeting_end_time": "<dateTime>",
"summary_start_time": "<dateTime>",
"summary_end_time": "<dateTime>",
"summary_created_time": "<dateTime>",
"summary_last_modified_time": "<dateTime>"
},
{
"meeting_host_id": "<string>",
"meeting_host_email": "<email>",
"meeting_uuid": "<string>",
"meeting_id": "<long>",
"meeting_topic": "<string>",
"meeting_start_time": "<dateTime>",
"meeting_end_time": "<dateTime>",
"summary_start_time": "<dateTime>",
"summary_end_time": "<dateTime>",
"summary_created_time": "<dateTime>",
"summary_last_modified_time": "<dateTime>"
}
]
} |
ENDPOINTS