Provenance
PublisherOutlook Calendar
API basehttps://graph.microsoft.com/
Freshness & coverage
FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationCredentials required (OAuth)
Methods (7)
outlookCalendar_list_calendars
readList calendars available to the current Outlook account.
Input schema
{ "type": "object", "properties": { "top": { "type": "number", "description": "Maximum calendars to return." } }, "additionalProperties": true }outlookCalendar_get_calendar
readFetch one Outlook calendar by ID.
Required paramscalendarIdInput schema
{ "type": "object", "properties": { "calendarId": { "type": "string", "description": "Outlook calendar ID." } }, "required": [ "calendarId" ], "additionalProperties": true }outlookCalendar_list_events
readList events in a calendar with optional paging and query controls.
Required paramscalendarIdInput schema
{ "type": "object", "properties": { "calendarId": { "type": "string", "description": "Outlook calendar ID." }, "top": { "type": "number", "description": "Maximum events to return." }, "skip": { "type": "number", "description": "Number of events to skip." }, "filter": { "type": "string", "description": "Microsoft Graph $filter expression." }, "search": { "type": "string", "description": "Microsoft Graph $search expression." }, "orderBy": { "type": "string", "description": "Microsoft Graph $orderby expression." } }, "required": [ "calendarId" ], "additionalProperties": true }outlookCalendar_get_event
readFetch one calendar event by ID.
Required paramscalendarIdeventIdInput schema
{ "type": "object", "properties": { "calendarId": { "type": "string", "description": "Outlook calendar ID." }, "eventId": { "type": "string", "description": "Outlook event ID." } }, "required": [ "calendarId", "eventId" ], "additionalProperties": true }outlookCalendar_create_event
writeCreate a new calendar event.
Required paramscalendarIdeventInput schema
{ "type": "object", "properties": { "calendarId": { "type": "string", "description": "Outlook calendar ID." }, "event": { "type": "object", "description": "Microsoft Graph event payload." } }, "required": [ "calendarId", "event" ], "additionalProperties": true }outlookCalendar_update_event
writeoutlookCalendar_delete_event
write
