Microsoft's Graph API: Fetch Calendar Events for Users v1.0

Victoria Jul 07, 2026

Microsoft's Graph API has emerged as a powerful tool for integrating and managing data across Microsoft 365 services. One of its standout features is the ability to interact with calendar events, a functionality that's particularly useful for businesses and individuals seeking to streamline their scheduling and organization. Let's delve into the world of Microsoft Graph API's calendar events, focusing on the /users/calendar/events endpoint.

How to create a shared calendar in Microsoft Teams
How to create a shared calendar in Microsoft Teams

Before we dive into the specifics, it's crucial to understand that the Microsoft Graph API uses RESTful principles, allowing you to perform CRUD (Create, Read, Update, Delete) operations on calendar events. This means you can manage your calendar, create new events, update existing ones, or delete events as needed, all via API calls.

Interactive Excel Calendar with Heatmap – Free Download
Interactive Excel Calendar with Heatmap – Free Download

Understanding Calendar Events

The /users/calendar/events endpoint is the gateway to managing calendar events for a specific user. It returns a collection of event objects, each containing detailed information about an event, such as its start and end times, location, attendees, and more.

a poster with the dates and times for an event in black and white, on a light blue background
a poster with the dates and times for an event in black and white, on a light blue background

Each event is represented as a JSON object with properties like subject (the event's title), start and end (datetime objects representing the event's duration), location (a complex object containing displayName, address, and coordinates), and attendees (an array of objects representing the event's attendees).

Creating a New Event

Social Media Content Planner 2026, Social Media Content Calendar, Monthly Content Marketing Planner
Social Media Content Planner 2026, Social Media Content Calendar, Monthly Content Marketing Planner

To create a new event, you can send a POST request to the /users/calendar/events endpoint. The request body should contain a JSON object representing the event's details. For example:

{
  "subject": "Meet for lunch",
  "startDateTime": "2022-01-01T12:00:31",
  "endDateTime": "2022-01-01T13:00:31",
  "location": {
    "displayName": "The Great Kitchen",
    "address": {
      "street": "4567 Flintston Ave",
      "city": "Bedrock",
      "state": "Colorado",
      "countryOrRegion": "USA"
    }
  },
  "attendees": [
    {
      "emailAddress": {
        "address": "fred.flintstone@bedrock.com",
        "name": "Fred Flintstone"
      },
      "type": "required"
    }
  ]
}

The API will respond with the newly created event's details, including a unique id that you can use to reference this event in future API calls.

Updating an Event

Palantir Infographic
Palantir Infographic

To update an existing event, you can send a PATCH or PUT request to the /users/calendar/events/{id} endpoint. The request body should contain a JSON object representing the updated event details. For example, to change the event's location:

{
  "location": {
    "displayName": "The New Great Kitchen",
    "address": {
      "street": "8901 Flintston Ave",
      "city": "Bedrock",
      "state": "Colorado",
      "countryOrRegion": "USA"
    }
  }
}

The API will respond with the updated event's details.

Working with Recurring Events

a calendar is shown on the computer screen
a calendar is shown on the computer screen

Microsoft Graph API also supports recurring events, allowing you to create events that repeat on a specified schedule. The /users/calendar/events endpoint supports creating, updating, and deleting recurring events, as well as listing and expanding them.

Recurring events are represented using the recurrence property in the event object. This property contains information about the recurrence pattern, such as the recurrence rule (e.g., "RRULE:FREQ=DAILY;COUNT=10"), exceptions (individual instances of the recurring event that don't follow the pattern), and more.

https graph microsoft com v1 0 users calendar events
https graph microsoft com v1 0 users calendar events
Create a WFH Schedule With Google Calendar
Create a WFH Schedule With Google Calendar
Horizontal - Blazor Admin & Dashboard Template
Horizontal - Blazor Admin & Dashboard Template
List of Best Linux Calendar Apps - Tricky Enough
List of Best Linux Calendar Apps - Tricky Enough
How to Make Charts and Graphs in Excel | Smartsheet
How to Make Charts and Graphs in Excel | Smartsheet
the knott wedding planner app is shown on an iphone, and it's full screen
the knott wedding planner app is shown on an iphone, and it's full screen
Calendly Event Dashboard Template
Calendly Event Dashboard Template
BI Dashboard - Red Clear Modern Design
BI Dashboard - Red Clear Modern Design
🏦 NordFX | Decision Week Alert
🏦 NordFX | Decision Week Alert
How to use Shifts in Microsoft Teams to manage work hours, schedules, and more
How to use Shifts in Microsoft Teams to manage work hours, schedules, and more
Events - Awwwards
Events - Awwwards
Guide to the 100+ construction projects across Washington highways summer 2025
Guide to the 100+ construction projects across Washington highways summer 2025
Outlook Tutorial - How to work with multiple calendars
Outlook Tutorial - How to work with multiple calendars
Microsoft Teams gets new Project and Roadmap apps
Microsoft Teams gets new Project and Roadmap apps
GMDMarkets
GMDMarkets
the ultimate guide to create professional chart in excel with infos, graphs and diagrams
the ultimate guide to create professional chart in excel with infos, graphs and diagrams
Excel KPI Dashboard for Manage Startup Survival with Cash Gap, CAC & LTV
Excel KPI Dashboard for Manage Startup Survival with Cash Gap, CAC & LTV
the dashboard is full of data and statistics for all kinds of vehicles, including cars
the dashboard is full of data and statistics for all kinds of vehicles, including cars
Excel Task Tracker Template: Daily, Weekly, Monthly (digital Download) - Etsy
Excel Task Tracker Template: Daily, Weekly, Monthly (digital Download) - Etsy
Viva Goals helps teams align around priorities and helps management communicate - TechRepublic
Viva Goals helps teams align around priorities and helps management communicate - TechRepublic

Expanding Recurring Events

When you retrieve a recurring event, the API returns a single event object with the recurrence property. To get a list of all the instances of a recurring event, you can send a GET request to the /users/calendar/events/{id}/instances endpoint. The API will respond with a collection of event objects, each representing a single instance of the recurring event.

In conclusion, Microsoft Graph API's /users/calendar/events endpoint offers a robust set of features for managing calendar events. Whether you're creating, updating, or working with recurring events, this endpoint provides a powerful tool for integrating calendar functionality into your applications. As with any API, it's essential to consult the official Microsoft Graph API documentation for the most accurate and up-to-date information. Happy coding!