# list_events Verhalten, Eingaben, Ausgaben und Freigaben für list_events. Source: https://docs.getridian.com/de/developers/tools/list_events/ Language: de Reviewed: 2026-09-20 Diese Referenz wird aus dem veröffentlichten Werkzeugvertrag erzeugt. Feldnamen und normative Beschreibungen im Schema sind Englisch. ## 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 Freigegebene Scopes, Konten, Kalender und Sichtbarkeitsregeln begrenzen den Zugriff. Ein Workspace-Admin erhält dadurch keinen pauschalen Zugriff auf fremde Konten. `calendar:read` [Freigaben und Grenzen](https://docs.getridian.com/de/developers/authentication/) ## Eingabe ```json { "$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 ```json { "$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 Prüfe das Werkzeugergebnis auf Fehler. Wiederhole Schreiboperationen nicht blind nach einem Timeout. Prüfe zuerst den Kalenderzustand. [Fehlerbehandlung](https://docs.getridian.com/de/developers/errors/)