Operations (sample payloads)

Main operations
Copy

Create meeting space
Copy

Create a new meeting space.

Sample Input

1
{}

Sample Output

1
{
2
"name": "My Team Meeting",
3
"meetingUri": "https://meet.google.com/abc-defg-hij"
4
}

Get meeting space
Copy

Retrieve a meeting space resource by name.

Sample Input

1
{
2
"name": "spaces/ABC123"
3
}

Sample Output

1
{
2
"name": "spaces/ABC123",
3
"meetingUri": "https://meet.google.com/abc-defg-hij"
4
}

List participants
Copy

Retrieve the list of Participants in a conference.

Sample Input

1
{
2
"conference_id": "abc-def-ghi",
3
"page_size": 50,
4
"page_token": "next_page_token_123"
5
}

Sample Output

1
{
2
"participants": [
3
{
4
"name": "John Doe",
5
"startTime": "2023-05-15T10:00:00Z",
6
"endTime": "2023-05-15T11:30:00Z",
7
"signedinUser": {
8
"user": "john.doe@example.com"
9
}
10
},
11
{
12
"name": "Jane Smith",
13
"startTime": "2023-05-15T10:05:00Z",
14
"endTime": "2023-05-15T11:25:00Z",
15
"signedinUser": {
16
"user": "jane.smith@example.com"
17
}
18
},
19
{
20
"name": "Bob Johnson",
21
"startTime": "2023-05-15T10:10:00Z",
22
"endTime": "2023-05-15T11:20:00Z",
23
"signedinUser": {
24
"user": "bob.johnson@example.com"
25
}
26
}
27
]
28
}