Method: conferenceRecords.participants.participantSessions.list

Lists 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'.

HTTP request

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

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. Format: conferenceRecords/{conferenceRecord}/participants/{participant}

Query parameters

Parameters
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.

pageToken

string

Optional. Page token returned from previous List Call.

filter

string

Optional. User specified filtering condition in EBNF format. The following are the filterable fields:

  • start_time
  • end_time

For example, end_time IS NULL returns active participant sessions in the conference record.

Request body

The request body must be empty.

Response body

Response of ListParticipants method.

If successful, the response body contains data with the following structure:

JSON representation
{
  "participantSessions": [
    {
      object (ParticipantSession)
    }
  ],
  "nextPageToken": string
}
Fields
participantSessions[]

object (ParticipantSession)

List of participants in one page.

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.

Authorization scopes

Requires one of the following OAuth scopes:

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

For more information, see the Authorization guide.