Lists the conference records. By default, ordered by start time and in descending order.
HTTP request
GET https://meet.googleapis.com/v2/conferenceRecords
The URL uses gRPC Transcoding syntax.
Query parameters
pageSize
integer
Optional. Maximum number of conference records to return. The service might return fewer than this value. If unspecified, at most 25 conference records are returned. The maximum value is 100; values above 100 are coerced to 100. 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:
-
space.meeting_code -
space.name -
start_time -
end_time
For example, consider the following filters:
-
space.name = "spaces/NAME" -
space.meeting_code = "abc-mnop-xyz" -
start_time>="2024-01-01T00:00:00.000Z" AND start_time<="2024-01-02T00:00:00.000Z" -
end_time IS NULL
Request body
The request body must be empty.
Response body
Response of conferenceRecords.list method.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"conferenceRecords"
:
[
{
object (
|
| Fields | |
|---|---|
conferenceRecords[]
|
List of conferences in one page. |
nextPageToken
|
Token to be circulated back for further List call if current List does NOT include all the Conferences. Unset if all conferences have been 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 .

