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.
Questions tagged [microsoft-graph-calendar]
408 questions
4
votes
2 answers
Office365 Graph API: Fetch Calendar Share Permissions
I'm trying to extract the share permissions for a Calendar through Microsoft Graph (or even the old Outlook REST API) but it seems that there is no Graph endpoint to get a calendar's sharing permissions.
When fetching a calendar's details, the…

yulkes
- 210
- 3
- 11
4
votes
1 answer
How to access a group calendar using Microsoft Graph Api?
I'm trying to access a group calendar using the microsoft graph api as the application (I don't want to use delegate permissions).
If I request calendar events using the below I get the events for the user just…

Ankeet Dhanji
- 123
- 1
- 8
3
votes
1 answer
MS Graph API - how to retrieve declined events?
Let's say person B sends a calendar event invite to person A. When we then run the following query for person A, we can see the event in the response with responseStatus.response="notResponded", which is…

Dominik Kapusta
- 96
- 5
3
votes
0 answers
Graph_helper.py Send on behalf of another user - Django
I have the following code (graph_helper.py), which I copied when completing the Microsoft Graph - Django.
The create_event and create_online_event functions works fine for the logged in user. What I ideally need is rather than the calendar events…

Mark
- 135
- 1
- 12
3
votes
1 answer
Microsoft Graph API GET onlineMeeting via joinUrl
Current using Microsoft Graph API v1.0 to create onlineMeetings via POST /me/events. Reason being, if you create an onlineMeeting directly and add a user in the meeting, it doesn't create a calendar event.
The params I use for that call…

Stephen C
- 843
- 2
- 14
- 28
3
votes
1 answer
Does Microsoft Graph change notification always send UPDATED notification for CREATED events?
I'm using Microsoft Graph API change subscription to handle created/updated/deleted calendar events.
I noticed that the API always sends at least one UPDATED notification for each newly CREATED event. A quick search shows that it's normal…

thankyoussd
- 1,875
- 1
- 18
- 39
3
votes
1 answer
How to subscribe to MS Graph calendar (not calendar event) change notifications, i.e new calendar created/deleted etc?
Microsoft Graph supports events change notifications, which are subscribed on the calendar level, so that we can get new/deleted/updated event notifications without constant polling. I got it to work fine with the .NET Graph SDK.
But what about the…

thankyoussd
- 1,875
- 1
- 18
- 39
3
votes
2 answers
Calendar Id randomly changed
Whats the reason that make a calendar change it's id when using microsoft graph ???
This happened today for one of our clients who's been using his main Calendar for over 2 years, and suddenly today, the id is changed and we are unable to add any…

Herz3h
- 614
- 5
- 20
3
votes
1 answer
Calendar event created using Microsoft Graph API. The webLink returned in the response is not working
I created an event in a group calendar using Microsoft graph API.
The weblink that is returned in the response after creating a calendar event, is not working. I want to open the calendar event in the read mode using this webLink.
The weblink, when…

Rakesh Joshi
- 371
- 1
- 10
3
votes
1 answer
Expanding singleValueExtendedProperty not working when retrieving Calendar details
I am trying to retrieve custom property value for an event using Outlook REST API (version 2.0). The custom property was created by an Outlook Office.js Add-ins.
Here is…

hoangpham2210
- 31
- 4
3
votes
1 answer
Search for an event according to a specific value of a singleValueExtendedProperty
Situation:
We have an old application that is creating events in outlook (via MAPI). To identify the events the custom property 'CTOID' is set with a specific value by which the events can be found again.
For a newer application we would like to use…

InD
- 239
- 2
- 12
3
votes
2 answers
Receive more than just ID for deleted events?
As documented, the event delta API only yields the ID of the deleted resource, and no other attributes.
Our application uses iCalUId as the primary key to synchronize one instance of an event to an external data store. In our system, many users can…

Cory Boyd
- 189
- 7
3
votes
1 answer
Understanding Microsoft graph /getSchedule Api functionality
I am trying to use graph /getSchedule api to check for meeting conflict. However I'm not quite about functionality and usage of request input field "availabilityViewInterval".
My basic requirement is to pass a start and end dateTime and see if the…

Croy
- 241
- 3
- 14
3
votes
1 answer
Graph API Calendar view events paging
I'm new to Graph API and need to get calendar events of the logged in user. I have got this to partly work following this article
but I'm only seeing 10 events.
//get calendar events
var startTime = DateTime.Today.ToString("s");
…

Jono
- 33
- 3
3
votes
1 answer
Microsoft Graph - calendarview filter case-insensitive tolower
I need to filter calendar views on their case insensitive subject as returned by Microsoft Graph API.
What I have tried so far:
I have confirmed that a case sensitive filter functions: filter=startswith(subject,'mystring')
I get an error when I add…

Klompenrunner
- 723
- 7
- 13