Google Super
GOOGLESUPER_LIST_PARTICIPANT_SESSIONS
Tool to list all participant sessions for a specific conference record in Google Meet. Use this when you need to retrieve a list of participants who joined a particular meeting.
Remote googlesuper
Other tools also called GOOGLESUPER_LIST_PARTICIPANT_SESSIONS?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"filter": {
"type": "string",
"title": "Filter",
"default": null,
"examples": [
"latest_end_time IS NULL"
],
"nullable": true,
"description": "Optional. User-specified filtering condition in EBNF format. Filterable fields include `earliest_start_time` and `latest_end_time`."
},
"parent": {
"type": "string",
"title": "Parent",
"examples": [
"conferenceRecords/my-conference-123"
],
"description": "Required. The identifier of the conference record, in the format `conferenceRecords/{conferenceRecord}`."
},
"page_size": {
"type": "integer",
"title": "Page Size",
"default": null,
"maximum": 250,
"minimum": 1,
"examples": [
100
],
"nullable": true,
"description": "Optional. Maximum number of participants to return. The service might return fewer than this value. If unspecified, at most 100 participants are returned. The maximum value is 250; values above 250 are coerced to 250."
},
"page_token": {
"type": "string",
"title": "Page Token",
"default": null,
"examples": [
"CiAKGjBpNDBibWxqNGx..."
],
"nullable": true,
"description": "Optional. Page token returned from a previous list call, used to retrieve the next page of results."
}
}
}