This guide explains how to create, get, and update a meeting space plus end an
active conference on the spaces
resource of the Google Meet REST API.
Create a meeting space
To create a meeting space,
use the create
method
on the spaces
resource.
The method returns an instance of a spaces
resource, which includes the
SpaceConfig
object
that's the configuration for the meeting space. It also contains the
ActiveConference
object that's a link to the current
conferenceRecords
resource within the meeting space.
The following code sample shows how to create a meeting space:
Java
Node.js
Python
Get details about a meeting space
To get details about an active meeting space and its settings, use the
get
method on the
spaces
resource with a
specified name
. For more information, see How Meet
identifies a meeting
space.
The method returns a meeting space as an instance of the
spaces
resource. To determine
if an active conference exists, examine the activeConference
field.
The following code sample shows how to retrieve a meeting space:
Java
Node.js
Python
Replace the space name value with the unique server-generated ID for the meeting space.
Update a meeting space
To update the details of a meeting space, use the
patch
method on the
spaces
resource with a
specified name
. For more information, see How Meet identifies
a meeting
space.
The patch
method also takes an optional updateMask
query parameter. The
field is of type
FieldMask
.
This is a comma-delimited list of fields you want to update in the space.
The method returns a meeting space as an instance of the
spaces
resource.
The following code sample shows how to update a meeting space:
Java
Node.js
Python
Replace the space name value with the unique server-generated ID for the meeting space.
End active conference
To end an active conference within a meeting space (if there's one), use the
endActiveConference
method on the spaces
resource.
Both the request and response body are empty. For more information, see How
Meet identifies a meeting
space.
The following code sample shows how to end an active conference:
Java
Node.js
Python
Replace the space name value with the unique server-generated ID for the meeting space.