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 会返回会议中的活跃参与者。

请求正文

请求正文必须为空。

响应正文

participants.list 方法的响应。

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

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

object (Participant)

一页中显示参与者列表。

nextPageToken

string

如果当前列表不包含所有参与者,则要循环回来用于进一步列表调用的令牌。如果返回所有参与者,则不设置。

totalSize

integer

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

授权范围

需要以下 OAuth 范围之一:

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

如需了解详情,请参阅授权指南