Method: conferenceRecords.participants.participantSessions.list
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
在会议记录中列出参与者的参与者会话。默认情况下,按加入时间降序排序。与所有其他 API 一样,此 API 支持将 fields
用作标准参数。不过,如果省略 fields
请求参数,此 API 会默认为 'participantsessions/*, nextPageToken'
。
HTTP 请求
GET https://meet.googleapis.com/v2/{parent=conferenceRecords/*/participants/*}/participantSessions
网址采用 gRPC 转码语法。
路径参数
参数 |
parent |
string
必需。格式:conferenceRecords/{conferenceRecord}/participants/{participant}
|
查询参数
参数 |
pageSize |
integer
可选。要返回的参与者会话数量上限。服务返回的值可能小于此值。如果未指定,则最多返回 100 名参与者。最大值为 250;大于 250 的值将被强制转换为 250。上限未来可能会发生变化。
|
pageToken |
string
可选。上一个列表调用返回的页面令牌。
|
filter |
string
可选。用户指定的过滤条件,采用 EBNF 格式。以下是可过滤的字段:
例如,end_time IS NULL 会返回会议记录中的活跃参与者会话。
|
响应正文
ListParticipants 方法的响应。
如果成功,响应正文将包含结构如下的数据:
JSON 表示法 |
{
"participantSessions": [
{
object (ParticipantSession )
}
],
"nextPageToken": string
} |
字段 |
participantSessions[] |
object (ParticipantSession )
一页中显示参与者列表。
|
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.participants.participantSessions.list\n\n- [HTTP request](#body.HTTP_TEMPLATE)\n- [Path parameters](#body.PATH_PARAMETERS)\n- [Query parameters](#body.QUERY_PARAMETERS)\n- [Request body](#body.request_body)\n- [Response body](#body.response_body)\n - [JSON representation](#body.ListParticipantSessionsResponse.SCHEMA_REPRESENTATION)\n- [Authorization scopes](#body.aspect)\n- [Try it!](#try-it)\n\nLists the participant sessions of a participant in a conference record. By default, ordered by join time and in descending order. This API supports `fields` as standard parameters like every other API. However, when the `fields` request parameter is omitted this API defaults to `'participantsessions/*, nextPageToken'`.\n\n### HTTP request\n\n`GET https://meet.googleapis.com/v2/{parent=conferenceRecords/*/participants/*}/participantSessions`\n\nThe URL uses [gRPC Transcoding](https://google.aip.dev/127) syntax.\n\n### Path parameters\n\n| Parameters ||\n|----------|----------------------------------------------------------------------------------------------|\n| `parent` | `string` Required. Format: `conferenceRecords/{conferenceRecord}/participants/{participant}` |\n\n### Query parameters\n\n| Parameters ||\n|-------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `pageSize` | `integer` Optional. Maximum number of participant sessions to return. The service might return fewer than this value. If unspecified, at most 100 participants are returned. The maximum value is 250; values above 250 are coerced to 250. 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: - `start_time` - `end_time` For example, `end_time IS NULL` returns active participant sessions in the conference record. |\n\n### Request body\n\nThe request body must be empty.\n\n### Response body\n\nResponse of ListParticipants method.\n\nIf successful, the response body contains data with the following structure:\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"participantSessions\": [ { object (/workspace/meet/api/reference/rest/v2/conferenceRecords.participants.participantSessions#ParticipantSession) } ], \"nextPageToken\": string } ``` |\n\n| Fields ||\n|-------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `participantSessions[]` | `object (`[ParticipantSession](/workspace/meet/api/reference/rest/v2/conferenceRecords.participants.participantSessions#ParticipantSession)`)` List of participants in one page. |\n| `nextPageToken` | `string` Token to be circulated back for further List call if current List doesn't include all the participants. Unset if all participants are 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)."]]