Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
28 views

I'm currently using the Microsoft Graph API to create and update calendar events in Outlook. I've also set up webhook notifications to stay informed about any changes to these events. However, I would ...
Lnacer's user avatar
  • 155
1 vote
0 answers
31 views

We are integrating our system with Outlook using the Microsoft Graph API (v5.80.0 Java SDK) and Kotlin 1.9.23. Our application synchronizes meetings created in Outlook bidirectionally with our own ...
Felipe Rubio Lomas's user avatar
0 votes
0 answers
23 views

I created a meeting room resource in Microsoft Exchange and used its email address to create an event using the following API: POST https://graph.microsoft.com/v1.0/users/{room_email}/calendars/events ...
Tarun Kumar's user avatar
0 votes
0 answers
32 views

If I make a new educationClass Team using the following commands. $user = Get-MgUser -Filter "Mail eq '[email protected]'" $params = @{ "[email protected]" = "https://...
Craig.C's user avatar
  • 621
0 votes
1 answer
95 views

I have an application which can create emails with HTML formatting and embedded images. This works by adding an "attachments" section in the message create json like so: "attachments&...
Colin Marshall's user avatar
0 votes
1 answer
172 views

I have a web application that functions as a notetaker for Microsoft Teams. Essentially, I need to use the Calls.AccessMedia.All scope for this application to access Microsoft Teams recordings. The ...
Gabe Dillin's user avatar
0 votes
1 answer
1k views

I'm trying to access my own calendar via powershell but am getting an error: Install-Module Microsoft.Graph Import-Module Microsoft.Graph.Calendar $creds = Get-Credential -UserName "<my user ...
Greg's user avatar
  • 4,113
1 vote
1 answer
275 views

I have Access token for v2.0 but when i am trying to get refresh token that is long lived. its give me an error prnt.sc/zaudnSFYhecT and below is the code that i am trying to add function ...
Nilesh Daldra's user avatar
0 votes
1 answer
224 views

Let's say a user shared their calendar with "Can view titles and locations" permission. Is there a way to view the titles and locations of the events on this user's calendar using Graph API?...
nadapeter's user avatar
0 votes
1 answer
795 views

I working with an MS Graph API to read a user calendar event using Lambda with NodeJs. Here is the flow of what I am doing: First I registered an app in AAD and gave the delegated permission like ...
Amjad's user avatar
  • 177
2 votes
0 answers
161 views

So I have been building my API to use the Microsoft Graph Subscriptions to read the events of a resource mailbox calendar. Everything seems to work, the only issue is that when you work with recurring ...
Billy Cottrell's user avatar
2 votes
1 answer
373 views

I am trying to write code to access Microsoft Calendar using Graph API var calendars = await graphClient.Me.Calendars.Request().GetAsync(); List<string> calendarNames = new List<...
Team Freytag's user avatar
1 vote
0 answers
564 views

I have an event driven system where on receiving a certain event I create a calendar event using the Graph API. https://learn.microsoft.com/en-us/graph/api/calendar-post-events?view=graph-rest-1.0 The ...
BiJ's user avatar
  • 1,699
0 votes
2 answers
329 views

We are trying to run some Arduino code that lists all events from the calendar of a user in our Azure AD. There are some issues with the permissions as one of us is able to get the data using the ...
charmesal's user avatar
-1 votes
2 answers
4k views

I'm trying to get the events from outlook calendar but I get an error doing so. I have an app registered on Azure Portal (free plan), which I'm using to read the events with Nodejs. This are the ...
Josep Navarro's user avatar
0 votes
1 answer
814 views

I am trying to read calendars of all users in my tenant using MS graph API in Microsoft Graph Explorer. I tried using this URI: https://graph.microsoft.com/v1.0/users/{user-id}/calendars but I was ...
HashTable's user avatar
1 vote
3 answers
1k views

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 ...
A. Jeromin's user avatar
0 votes
0 answers
112 views

My application has been in production for several months and everything worked fine. Howwever, since February 24, 2023, whenever it deletes a calendar event via DELETE /me/calendars/{id}/events/{id}, ...
Jens Bannmann's user avatar
1 vote
1 answer
811 views

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 ...
deathByChocolate's user avatar
2 votes
1 answer
606 views

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 ...
Sanket Khot's user avatar
0 votes
1 answer
897 views

I have a recurring event, repeated 5 days in a row, of which: the occurrence on 16/3 was modified (caption and times) the occurrence on 18/3 was modified (caption, to distinguish it), then deleted If ...
Jan Doggen's user avatar
  • 9,086
-2 votes
1 answer
2k views

Now that I am able to get user info from 365 ( see previous question here Get user info from Microsoft.graph in ASP.NET Webforms ) I am now having problems getting calendar events. It would appear ...
user1944720's user avatar
1 vote
0 answers
197 views

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 ...
Billy Cottrell's user avatar
0 votes
1 answer
210 views

The documentation about lambda operators has some examples of filtering on subproperties that work fine in Graph Explorer: https://graph.microsoft.com/v1.0/users?$filter=imAddresses/any(i:i eq 'admin@...
Jan Doggen's user avatar
  • 9,086
0 votes
1 answer
143 views

I'm trying to use the Microsoft Graph API to retrieve an Outlook Group Calendar. By this, I mean one of the calendars that appears in the "groups" section in Outlook, like in this picture: ...
Master_T's user avatar
  • 8,181

1
2 3 4 5
9