Google Super

GOOGLESUPER_LIST_CONFERENCE_RECORDS

Tool to list conference records. Use when you need to retrieve a list of past conferences, optionally filtering them by criteria like meeting code, space name, or time range.

Remote googlesuper

Other tools also called GOOGLESUPER_LIST_CONFERENCE_RECORDS? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "filter": {
      "type": "string",
      "title": "Filter",
      "default": null,
      "nullable": true,
      "description": "Optional. User specified filtering condition in EBNF format. Filterable fields: `space.meeting_code`, `space.name`, `start_time`, `end_time`. Examples: `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`"
    },
    "page_size": {
      "type": "integer",
      "title": "Page Size",
      "default": null,
      "maximum": 100,
      "minimum": 1,
      "nullable": true,
      "description": "Maximum number of conference records to return. The service might return fewer than this value. If unspecified, at most 25 conference records are returned. The maximum value is 100; values above 100 are coerced to 100."
    },
    "page_token": {
      "type": "string",
      "title": "Page Token",
      "default": null,
      "nullable": true,
      "description": "Page token returned from previous List Call."
    }
  }
}