Lists the participants 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 'participants/*,
nextPageToken'.
HTTP request
GET https://meet.googleapis.com/v2/{parent=conferenceRecords/*}/participants
Maximum number of participants 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.
pageToken
string
Page token returned from previous List Call.
filter
string
Optional. User specified filtering condition in EBNF format. The following are the filterable fields:
earliest_start_time
latest_end_time
For example, latest_end_time IS NULL returns active participants in the conference.
Request body
The request body must be empty.
Response body
Response of participants.list method.
If successful, the response body contains data with the following structure:
Token to be circulated back for further List call if current List doesn't include all the participants. Unset if all participants are returned.
totalSize
integer
Total, exact number of participants. By default, this field isn't included in the response. Set the field mask in SystemParameterContext to receive this field in the response.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-02 UTC."],[],[],null,["# Method: conferenceRecords.participants.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.ListParticipantsResponse.SCHEMA_REPRESENTATION)\n- [Authorization scopes](#body.aspect)\n- [Try it!](#try-it)\n\nLists the participants 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 `'participants/*,\nnextPageToken'`.\n\n### HTTP request\n\n`GET https://meet.googleapis.com/v2/{parent=conferenceRecords/*}/participants`\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}` |\n\n### Query parameters\n\n| Parameters ||\n|-------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `pageSize` | `integer` Maximum number of participants 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` 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: - `earliest_start_time` - `latest_end_time` For example, `latest_end_time IS NULL` returns active participants in the conference. |\n\n### Request body\n\nThe request body must be empty.\n\n### Response body\n\nResponse of participants.list method.\n\nIf successful, the response body contains data with the following structure:\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"participants\": [ { object (/workspace/meet/api/reference/rest/v2/conferenceRecords.participants#Participant) } ], \"nextPageToken\": string, \"totalSize\": integer } ``` |\n\n| Fields ||\n|------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `participants[]` | `object (`[Participant](/workspace/meet/api/reference/rest/v2/conferenceRecords.participants#Participant)`)` 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| `totalSize` | `integer` Total, exact number of `participants`. By default, this field isn't included in the response. Set the field mask in [SystemParameterContext](https://cloud.google.com/apis/docs/system-parameters) to receive this field in the response. |\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)."]]