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
2
votes
3 answers
Is it possible to create calendar events with attachments?
I want to create a calendar event using Microsoft Graph and this is working but unfortunately, I'm not able to add attachments to the event. The event is created but without the attachments. No error is reported.
This is my code:
DateTimeTimeZone…

Ben van Erp
- 23
- 3
2
votes
1 answer
Create event with Microsoft-graph php-sdk
I try to create event with php-sdk but setting start and end timezone not working.
$e = new Model\Event();
$e->setSubject($subject);
$start = new Model\DateTimeTimeZone();
$start->setDateTime($startDateTime);
…

Mihail Denev
- 21
- 1
2
votes
1 answer
How to get a list of shared Calendars in Microsoft graph?
Is it possible to get a list of users (or user ids) who shared their calendars with the person logged in?
I want to have a list of calendars where I can call as I do with
https://graph.microsoft.com/v1.0/users('user shared the…

S.B.
- 21
- 2
2
votes
2 answers
MIcrosoft API get Calendar Event description and show it appropriately
In my React project, I made an Axios call to populate a Calendar Event List taking data from Microsoft Outlook Calendar (using Microsoft API). The result is the following
As you can see only event description give me a problem. Indeed to show the…

TheOldBlackbeard
- 395
- 4
- 22
2
votes
1 answer
Microsoft Graph API - How to retrieve deleted outlook event details by event id
We are subscribing(using Graph API Webhooks) to calendar events that are deleted by the user. When the listener receive notification payload, it will have event id and we would like to get more details about the event to take further action.
when…

user8947735
- 43
- 5
1
vote
2 answers
Set "charm" icon for Outlook365 using Power Automate or MS Graph API
I want to create events in Outlook365 calender where I specify the category and the charm icon (i.e. phone icon for calls, repair icon for tasks, etc.; as they are available in the calendar in the browser) using PowerAutomate or the Graph-API.
An…

A. Jeromin
- 13
- 2
1
vote
1 answer
Update single event from recursive event using microsoft graph api
Is it possible to update a single event from a recursive event using Microsoft Graph API? if it is possible to update, please share a useful link.
I tried finding it in the official documentation but couldnt find how to change time of a single…

deathByChocolate
- 23
- 5
1
vote
1 answer
Microsoft Webhooks: Subscription validation request failed. Notification endpoint must respond with 200 OK to validation request
I want to subscribe to calendar events and I am using the following API call
and I am getting the following error
My code in calendar_notification (notificationUrl) has the functionality to send back 200 OK with validationToken.
But while checking…

Sanket Khot
- 11
- 3
1
vote
0 answers
How to fix Microsoft Graph FetchError write EPROTO decryption failed or bad record mac
I have a system that uses Microsoft Graph to get bookings of resource mailboxes from outlook with the option to checkin and checkout.
Now for some reason my system started to fail this saturday and when I checked the logs I get weird…

Billy Cottrell
- 443
- 5
- 20
1
vote
1 answer
How to integrate outlook calendar API into React JS application?
Actually when I log in to the Microsoft online login with this API https://login.microsoftonline.com/{tanent_id}/oauth2/v2.0/token and use the token response into this API headers https://graph.microsoft.com/v1.0/me/events to add an event into the…

Abhimanyu
- 26
- 3
1
vote
0 answers
How to get one specific instance (e.g nth occurrance) of a Meeting Series using MS Graph API
In MS EWS API, It was possible to get nth instance of a meeting series by providing series index.
We are migrating our EWS implementation to MS Graph. But I could not find an API to do the same.
I have found a different implementation to fetch all…

Waqar Hassan
- 29
- 1
- 10
1
vote
1 answer
Cannot retrieve all instances of a recurring event
It seems that retrieving instances after creating a recurring event does not always return more than 10 instances.
For example, if an event is created as follows, 11 instances will be created.
var @event = new Event
{
Subject = "Subject",
…

Tomo
- 13
- 3
1
vote
1 answer
Getting ErrorItemNotFound
I am using graph api for outlook calendars.
Frequently I am getting ({"error":{"code":"ErrorItemNotFound","message":"The specified object was not found in the…

rajat agarwal
- 11
- 1
1
vote
1 answer
@odata.nextLink missing when trying to get places from Microsoft Graph
I have the following code to get places from Microsoft Graph:
var queryOptions = new List() { new QueryOption("$count", "true") };
var roomUrl = graphClient.Places.AppendSegmentToRequestUrl("microsoft.graph.room");
…

user989988
- 3,006
- 7
- 44
- 91
1
vote
2 answers
How to integrate a Spring Boot Java app with Outlook calendar for MS personal account users?
Idea is to build a Spring Boot Java app with which we can get MS Outlook personal account holder's calendar data, say upcoming events. Based on initial research I found out that MS-Graph API is the answer for the same, and I started with this…

Vyassa
- 33
- 7