A conference is a server-generated instance of a call within a meeting space. Users typically consider this scenario a single meeting.
This page describes how to get information about all conferences or just a single instance.
Search for all conferences
To get details about all conferences, use the
list
method on the
conferenceRecords
resource without any parameters.
The method returns a list of past conferences, filtered to the conference
organizer, ordered by startTime
in descending order, as an instance of a
conferenceRecords
resource.
The following code sample shows how to list all conferences:
Java
Node.js
Python
Filter list results
To retrieve specific items, filter the conferenceRecords
resource results
returned from the
conferenceRecords.list
method using the filter
query parameter.
The following fields are filterable:
space.meeting_code
space.name
start_time
end_time
The following examples show how to use the filter
query parameter:
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
Search for a specific conference
To search for a specific conference, use the
get
method on the
conferenceRecords
resource
with the conference name
path parameter. To retrieve the conference name, use
the conferenceRecords.list
method.
The method returns a conference name as an instance of a conferenceRecords
resource.
The following code sample shows how to retrieve a specific conference:
Java
Node.js
Python
Replace the conference record name with the name of the specific conference to find.