Questions tagged [microsoft-graph-calendar]

Microsoft Graph Calendar refers to the Outlook Calendar APIs in Microsoft Graph. This tag should always be used in conjunction with the [microsoft-graph] tag.

408 questions
1
vote
0 answers

InvalidDeltaToken on NextLink (Microsoft Graph Calendar)

When I get the list of events using : https://graph.microsoft.com/beta/users/myemail@email.com/events/delta Microsoft Graph Explorer I get the link @odata.nextlink, but this link returns an error InvalidDeltaToken { "error": { "code":…
Cyroul
  • 11
  • 2
1
vote
1 answer

$dateRange is undefined

I am following this tutorial: https://learn.microsoft.com/en-us/graph/tutorials/php?tutorial-step=4 However, I did not manage to list all the events in my calendar. I was able to dump json file by using this: return response()->json($events);…
1
vote
1 answer

Delete conversation member in a calendar event - MS Graph API

After I created a calendar event, participants can start a meeting and then a conversation with each other by chatting. When the meeting ends, I would like to force the participants to leave the chat group so that the chat remains available but they…
1
vote
1 answer

How to scope a specific Graph API permission to a specific user or mailbox

According to Microsoft Docs, there is a way to scope Graph API application permissions to specific users / mailboxes with a command like this: New-ApplicationAccessPolicy -AppId e7e4dbfc-046f-4074-9b3b-2ae8f144f59b -PolicyScopeGroupId…
1
vote
1 answer

No results when filtering a CalendarView by an extended Property

I am using the Microsoft Graph C# SDK to retrieve certain calendar events from users. Using the method var calendarView = await graphClient.Users[mail].CalendarView.Request( new List() { new QueryOption("startDateTime",…
1
vote
0 answers

Microsoft Graph API: Why is creating a recurring event in the past returning a 400?

I am running into an issue creating recurring events in the past using Graph API. When I POST this data to /me/calendars/[calendarId]/events I get an ErrorPropertyValidationFailure error: { "isAllDay": true, "start": { "timeZone":…
1
vote
1 answer

Fetching Calendar events from Room Mailbox using graph client

Hi I'm trying to get the events from the room mailbox using graph client. Like we retrieve events from the user calendar as follows. var queryOptions = new List() { new QueryOption("startDateTime",…
1
vote
0 answers

Shared calendars through Microsoft Graph

I'm viewing shared calendars in my app. It uses delegated workflow with permission Calendar.Read.Shared and Users.ReadBasic.All I don't really understand how to sharing works when it comes to the API Some users shared calendars are not shown when…
1
vote
0 answers

Graph API bug changing recurrence from "noEnd" to "numbered"

I have an event in Outlook with an attendee that uses Google calendar. When I change the event recurrence range type using the graph API from "noEnd" to "numbered", the google attendee's event does not get updated. Here is the code I am using to set…
1
vote
1 answer

Microsoft Graph API getSchedule filter by calendars

I'm using microsoft graph API and want to get user's busy slots for particular calendars, so there is an end point /getSchedule which takes body like : { "schedules": ["adelev@contoso.onmicrosoft.com", "meganb@contoso.onmicrosoft.com"], …
1
vote
0 answers

How to display the editing of one or more occurrence in a recurring event series in the outlook calendar?

I am updating an existing outlook calendar viewing feature in our custom ASP.NET web application that works well and displays all the events except the recurring ones. Since I am new to Outlook Calendar APIs, I am aggressively learning how to…
1
vote
2 answers

Microsoft Graph: Unable to update Start or End Date of an event

I'm using Microsoft Graph .NET SDK to update outlook events. Following code successfully updates the Subject, and Body attributes of an event. But when I try to update the Start and/or End dates of the the event (that are of the dateTimeTimeZone…
nam
  • 21,967
  • 37
  • 158
  • 332
1
vote
0 answers

How does Outlook sync with events created in Google?

I am writing a calendar integration and using the Google Calendar api and Outlook Graph api to sync calendar events. I am receiving webhook notifications as changes are made to events, so I need a way to identify that an event in Google and an event…
1
vote
1 answer

Expand single value extended properties on events delta query?

Should it be possible to provide an $expand=singleValueExtendedProperties... query parameter on an events delta request? My approach returns an error that I wasn't quite expecting. The request looks like…
1
vote
1 answer

Large (> 4mb) File Attachments using the Microsoft Graph Java SDK

How to add attachments to the existing meeting calendar event id if the attachment size is more than 4 MB using JAVA