list_events
Behavior, inputs, outputs and permissions for list_events.
Reviewed · 2026-09-20 / Ridian
This reference is generated from the published tool contract.
Behavior and boundaries
Section titled “Behavior and boundaries”Lists policy-filtered events from selected Google, Microsoft or CalDAV calendars in a bounded UTC interval. CalDAV series are read including exceptions; CalDAV RSVP and series writes are not supported. canEdit and canRespond include this assistant’s current permissions as well as provider and calendar restrictions. Each event includes the connected user’s current RSVP status when known. Actions recheck permissions and provider state before writing.
Permissions
Section titled “Permissions”Granted scopes, accounts, calendars and visibility rules limit access. Workspace administrators do not automatically gain access to other users’ accounts.
calendar:read
{ "$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}Output
Section titled “Output”{ "$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}Errors and retries
Section titled “Errors and retries”Check the tool result for errors. Do not blindly retry writes after a timeout. Check the calendar state first.