outlook_create_event
Create a calendar event with optional attendees, recurrence, and Teams online meeting. Use ISO 8601 dates; note that Teams meetings require a work or school account.
Instructions
Create a calendar event with optional attendees, recurrence, and Teams online meeting.
Example: outlook_create_event(subject="Q3 review", start="2026-08-15T14:00:00Z",
end="2026-08-15T15:00:00Z", attendees=["alice@acme.com"])
is_online is accepted but has no effect on personal accounts — Graph silently ignores
isOnlineMeeting for consumer mailboxes (it returns isOnlineMeeting: False,
onlineMeetingProvider: "unknown"). Teams meetings require a work/school account.
start/end are ISO 8601. Passing recurrence creates a series, not a single event.
It takes either a shorthand — "daily", "weekdays", "weekly", "monthly", "yearly", all
anchored on start and open-ended — or a full Microsoft Graph recurrence object for
anything else, e.g. every other Mon+Fri for 10 occurrences:
{"pattern": {"type": "weekly", "interval": 2, "daysOfWeek": ["monday", "friday"]},
"range": {"type": "numbered", "numberOfOccurrences": 10}}
range.startDate defaults to the event's start date. Prefer a bounded range
("endDate"/"numbered") when the event has attendees — a "noEnd" series invites them
to every future occurrence.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end | Yes | ||
| body | No | ||
| start | Yes | ||
| subject | Yes | ||
| location | No | ||
| attendees | No | ||
| is_online | No | ||
| is_all_day | No | ||
| recurrence | No |