Read the details of one calendar event. Use this when the user asks about a specific event; use listCalendarEvents to see events in a time range. Fetches a single calendar event for the authenticated user, keyed by the `{id}` from v1ListCalendarEvents; requires the `meetings:read` scope. Use it to read the full detail of an event you already discovered via the list call. Returns 404 if the id is unknown or the event does not belong to the caller.
getCalendarEventRead the details of one calendar event. Use this when the user asks about a specific event; use listCalendarEvents to see events in a time range.
Fetches a single calendar event for the authenticated user, keyed by the {id}
from v1ListCalendarEvents; requires the meetings:read scope. Use it to read
the full detail of an event you already discovered via the list call. Returns
404 if the id is unknown or the event does not belong to the caller.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Calendar Event ID |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Unique identifier for the calendar event | |
| title | No | Title of the calendar event | |
| end_time | No | End time of the event in RFC3339 format | |
| location | No | Location of the event (physical or virtual) | |
| attendees | No | List of attendees for the calendar event | |
| organizer | No | Organizer of the calendar event | |
| start_time | No | Start time of the event in RFC3339 format | |
| description | No | Description or body of the calendar event | |
| linked_meetings | No | IDs of all linked Contio meetings, sorted by creation date (oldest first) |