Operations (sample payloads)
Main operations
Create meeting space
Create a new meeting space. Sample Input
{}
Sample Output
\{
"name": "My Team Meeting",
"meetingUri": "https://meet.google.com/abc-defg-hij"
\}
Get meeting space
Retrieve a meeting space resource by name. Sample Input
{
"name": "spaces/ABC123"
}
Sample Output
\{
"name": "spaces/ABC123",
"meetingUri": "https://meet.google.com/abc-defg-hij"
\}
List participants
Retrieve the list of Participants in a conference. Sample Input
\{
"conference_id": "abc-def-ghi",
"page_size": 50,
"page_token": "next_page_token_123"
\}
Sample Output
{
"participants": [
{
"name": "John Doe",
"startTime": "2023-05-15T10:00:00Z",
"endTime": "2023-05-15T11:30:00Z",
"signedinUser": {
"user": "john.doe@example.com"
}
},
{
"name": "Jane Smith",
"startTime": "2023-05-15T10:05:00Z",
"endTime": "2023-05-15T11:25:00Z",
"signedinUser": {
"user": "jane.smith@example.com"
}
},
{
"name": "Bob Johnson",
"startTime": "2023-05-15T10:10:00Z",
"endTime": "2023-05-15T11:20:00Z",
"signedinUser": {
"user": "bob.johnson@example.com"
}
}
]
}