Method: conferenceRecords.list
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
HTTP 请求
GET https://meet.googleapis.com/v2/conferenceRecords
网址采用 gRPC 转码语法。
查询参数
参数 |
pageSize |
integer
可选。要返回的会议记录数上限。服务返回的值可能小于此值。如果未指定,则最多返回 25 条会议记录。最大值为 100;高于 100 的值将强制转换为 100。上限未来可能会发生变化。
|
pageToken |
string
可选。上一个列表调用返回的页面令牌。
|
filter |
string
可选。用户指定的过滤条件,采用 EBNF 格式。以下是可过滤的字段:
space.meeting_code
space.name
start_time
end_time
例如,请考虑以下过滤条件:
space.name = "spaces/NAME"
space.meeting_code = "abc-mnop-xyz"
start_time>="2024-01-01T00:00:00.000Z" AND
start_time<="2024-01-02T00:00:00.000Z"
end_time IS NULL
|
响应正文
conferenceRecords.list 方法的响应。
如果成功,响应正文将包含结构如下的数据:
JSON 表示法 |
{
"conferenceRecords": [
{
object (ConferenceRecord )
}
],
"nextPageToken": string
} |
字段 |
conferenceRecords[] |
object (ConferenceRecord )
一页中列出了所有会议。
|
nextPageToken |
string
如果当前列表未包含所有会议,则要循环回来以进行进一步的列表调用。如果已返回所有会议,则取消设置。
|
授权范围
需要以下 OAuth 范围之一:
https://www.googleapis.com/auth/meetings.space.created
https://www.googleapis.com/auth/meetings.space.readonly
如需了解详情,请参阅授权指南。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-25。
[null,null,["最后更新时间 (UTC):2025-07-25。"],[],[],null,["# Method: conferenceRecords.list\n\n- [HTTP request](#body.HTTP_TEMPLATE)\n- [Query parameters](#body.QUERY_PARAMETERS)\n- [Request body](#body.request_body)\n- [Response body](#body.response_body)\n - [JSON representation](#body.ListConferenceRecordsResponse.SCHEMA_REPRESENTATION)\n- [Authorization scopes](#body.aspect)\n- [Try it!](#try-it)\n\nLists the conference records. By default, ordered by start time and in descending order.\n\n### HTTP request\n\n`GET https://meet.googleapis.com/v2/conferenceRecords`\n\nThe URL uses [gRPC Transcoding](https://google.aip.dev/127) syntax.\n\n### Query parameters\n\n| Parameters ||\n|-------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `pageSize` | `integer` Optional. Maximum number of conference records to return. The service might return fewer than this value. If unspecified, at most 25 conference records are returned. The maximum value is 100; values above 100 are coerced to 100. Maximum might change in the future. |\n| `pageToken` | `string` Optional. Page token returned from previous List Call. |\n| `filter` | `string` Optional. User specified filtering condition in [EBNF format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form). The following are the filterable fields: - `space.meeting_code` - `space.name` - `start_time` - `end_time` For example, consider the following filters: - `space.name = \"spaces/NAME\"` - `space.meeting_code = \"abc-mnop-xyz\"` - `start_time\u003e=\"2024-01-01T00:00:00.000Z\" AND start_time\u003c=\"2024-01-02T00:00:00.000Z\"` - `end_time IS NULL` |\n\n### Request body\n\nThe request body must be empty.\n\n### Response body\n\nResponse of conferenceRecords.list method.\n\nIf successful, the response body contains data with the following structure:\n\n| JSON representation |\n|-----------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"conferenceRecords\": [ { object (/workspace/meet/api/reference/rest/v2/conferenceRecords#ConferenceRecord) } ], \"nextPageToken\": string } ``` |\n\n| Fields ||\n|-----------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `conferenceRecords[]` | `object (`[ConferenceRecord](/workspace/meet/api/reference/rest/v2/conferenceRecords#ConferenceRecord)`)` List of conferences in one page. |\n| `nextPageToken` | `string` Token to be circulated back for further List call if current List does NOT include all the Conferences. Unset if all conferences have been returned. |\n\n### Authorization scopes\n\nRequires one of the following OAuth scopes:\n\n- `https://www.googleapis.com/auth/meetings.space.created`\n- `https://www.googleapis.com/auth/meetings.space.readonly`\n\nFor more information, see the [Authorization guide](/workspace/guides/configure-oauth-consent)."]]