list-calendar-events
list-calendar-eventsList events in the default Microsoft 365 calendar, including recurring series masters and single events, with support for OData filters, field selection, ordering, and pagination.
Instructions
List events of the default calendar (series masters + single events). For time-ranged queries prefer get-calendar-view which expands recurrences.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Continuation token (nextCursor of a previous truncated response). Continues that listing; other query inputs are ignored. | |
| filter | No | OData $filter expression, e.g. "importance eq 'high'" or "hasAttachments eq true" | |
| select | No | Comma separated list of properties to return (OData $select) | |
| orderby | No | OData $orderby, e.g. "receivedDateTime desc" | |
| maxItems | No | Maximum items to return across pages (default 50, max 500). Pagination via @odata.nextLink is handled automatically; when the result is truncated, pass its nextCursor as cursor to continue. |