Method: conferenceRecords.transcripts.list

Lists the set of transcripts from the conference record. By default, ordered by start time and in ascending order.

HTTP request

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

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. Format: conferenceRecords/{conferenceRecord}

Query parameters

Parameters
pageSize

integer

Maximum number of transcripts to return. The service might return fewer than this value. If unspecified, at most 10 transcripts are returned. The maximum value is 100; values above 100 are coerced to 100. Maximum might change in the future.

pageToken

string

Page token returned from previous List Call.

Request body

The request body must be empty.

Response body

Response for transcripts.list method.

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

JSON representation
{
  "transcripts": [
    {
      object (Transcript)
    }
  ],
  "nextPageToken": string
}
Fields
transcripts[]

object (Transcript)

List of transcripts in one page.

nextPageToken

string

Token to be circulated back for further List call if current List doesn't include all the transcripts. Unset if all transcripts 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.