list_events
Verhalten, Eingaben, Ausgaben und Freigaben für list_events.
Fachlich geprüft · 2026-09-20 / Ridian
Diese Referenz wird aus dem veröffentlichten Werkzeugvertrag erzeugt. Feldnamen und normative Beschreibungen im Schema sind Englisch.
Verhalten und Grenzen
Abschnitt betitelt „Verhalten und Grenzen“Liest nach Richtlinien gefilterte Termine ausgewählter Google-, Microsoft- oder CalDAV-Kalender in einem begrenzten UTC-Zeitraum. CalDAV-Serien werden einschließlich Ausnahmen gelesen; CalDAV-RSVP und Serien-Schreibaktionen werden nicht unterstützt. canEdit und canRespond berücksichtigen die aktuellen Assistentenrechte sowie Anbieter- und Kalendergrenzen. Jeder Termin enthält, soweit bekannt, den aktuellen Antwortstatus des verbundenen Nutzers. Schreibaktionen prüfen Rechte und Anbieterzustand erneut.
Berechtigungen
Abschnitt betitelt „Berechtigungen“Freigegebene Scopes, Konten, Kalender und Sichtbarkeitsregeln begrenzen den Zugriff. Ein Workspace-Admin erhält dadurch keinen pauschalen Zugriff auf fremde Konten.
calendar:read
Eingabe
Abschnitt betitelt „Eingabe“{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "calendarIds": { "minItems": 1, "maxItems": 20, "type": "array", "items": { "type": "string" } }, "start": { "type": "string", "description": "Inclusive ISO 8601 date-time." }, "end": { "type": "string", "description": "Exclusive ISO 8601 date-time." }, "timeZone": { "description": "User-confirmed IANA timezone for CalDAV all-day and floating times, e.g. Europe/Berlin. Supply it for CalDAV; ask the user if unknown. Does not change absolute event timestamps.", "type": "string", "minLength": 1, "maxLength": 128 } }, "required": [ "calendarIds", "start", "end" ], "additionalProperties": false}Ausgabe
Abschnitt betitelt „Ausgabe“{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "ok": { "type": "boolean", "const": true }, "termine": { "type": "array", "items": { "type": "object", "properties": { "eventId": { "type": "string" }, "calendarId": { "type": "string" }, "occurrenceId": { "type": "string" }, "title": { "type": "string" }, "description": { "type": "string" }, "locations": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "coordinates": { "type": "string" } }, "required": [ "name" ], "additionalProperties": false } }, "virtualLocations": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "uri": { "type": "string" } }, "required": [ "uri" ], "additionalProperties": false } }, "links": { "type": "array", "items": { "type": "object", "properties": { "href": { "type": "string" }, "title": { "type": "string" }, "rel": { "type": "string" } }, "required": [ "href" ], "additionalProperties": false } }, "categories": { "type": "array", "items": { "type": "string" } }, "keywords": { "type": "array", "items": { "type": "string" } }, "color": { "type": "string" }, "start": { "type": "string" }, "timeZone": { "type": "string" }, "duration": { "type": "string" }, "showWithoutTime": { "type": "boolean" }, "status": { "type": "string", "enum": [ "confirmed", "tentative", "cancelled" ] }, "freeBusyStatus": { "type": "string", "enum": [ "free", "busy" ] }, "canRespond": { "type": "boolean", "description": "Whether this assistant may respond, subject to a fresh provider check." }, "canEdit": { "type": "boolean", "description": "Whether this assistant may edit or delete, subject to a fresh provider check." }, "responseStatus": { "type": "string", "enum": [ "needs-action", "accepted", "declined", "tentative" ] }, "privacy": { "type": "string", "enum": [ "public", "private", "secret" ] }, "alerts": { "type": "array", "items": { "type": "object", "properties": { "offset": { "type": "string" }, "action": { "type": "string", "enum": [ "display", "email" ] } }, "required": [ "offset" ], "additionalProperties": false } }, "workingLocation": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "home", "office", "custom" ] }, "label": { "type": "string" } }, "required": [ "type" ], "additionalProperties": false } }, "required": [ "eventId", "calendarId", "occurrenceId", "title", "start", "duration", "showWithoutTime", "status", "freeBusyStatus", "canRespond", "canEdit" ], "additionalProperties": false } } }, "required": [ "ok", "termine" ], "additionalProperties": false}Fehler und Wiederholungen
Abschnitt betitelt „Fehler und Wiederholungen“Prüfe das Werkzeugergebnis auf Fehler. Wiederhole Schreiboperationen nicht blind nach einem Timeout. Prüfe zuerst den Kalenderzustand.