Method: conferenceRecords.participants.list

列出会议记录中的参与者。默认情况下,按加入时间及降序排序。与其他 API 一样,此 API 支持将 fields 作为标准参数。但是,如果省略 fields 请求参数,则此 API 默认为 'participants/*, nextPageToken'

HTTP 请求

GET https://meet.googleapis.com/v2/{parent=conferenceRecords/*}/participants

网址采用 gRPC 转码语法。

路径参数

参数
parent

string

必需。格式:conferenceRecords/{conferenceRecord}

查询参数

参数
pageSize

integer

返回的参与者人数上限。服务返回的值可能会少于此值。如果未指定,则最多返回 100 位参与者。最大值为 250;大于 250 的值会被强制转换为 250。最大值将来可能会发生变化。

pageToken

string

从上一个列表调用返回的页面令牌。

filter

string

可选。用户以 EBNF 格式指定的过滤条件。以下是可过滤字段:

  • earliest_start_time
  • latest_end_time

例如,latest_end_time IS NULL 会返回会议中的活跃参与者。

请求正文

请求正文必须为空。

响应正文

对 PARTICIPANT.list 方法的响应。

如果成功,响应正文将包含结构如下的数据:

JSON 表示法
{
  "participants": [
    {
      object (Participant)
    }
  ],
  "nextPageToken": string,
  "totalSize": integer
}
字段
participants[]

object (Participant)

单个页面中的参与者列表。

nextPageToken

string

如果当前列表未包含所有参与者,则将会返回令牌以进行后续 List 调用。如果返回所有参与者,则取消设置。

totalSize

integer

participants的准确总数。默认情况下,此字段不包含在响应中。在 SystemParameterContext 中设置字段掩码,以在响应中接收此字段。

授权范围

需要以下 OAuth 范围之一:

  • https://www.googleapis.com/auth/meetings.space.created
  • https://www.googleapis.com/auth/meetings.space.readonly

有关详情,请参阅授权指南