410 questions
1
vote
0
answers
28
views
Ignore Outlook Events updated by Microsoft Graph API
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 ...
1
vote
0
answers
31
views
How to synchronize Outlook meeting room check-ins with external systems via Graph API?
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 ...
0
votes
0
answers
23
views
Events created from post event api for meeting room resource not syncing in outlook calendar in real time
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
...
0
votes
0
answers
32
views
How to understand Ms Team provisioning flags and Group Calendars
If I make a new educationClass Team using the following commands.
$user = Get-MgUser -Filter "Mail eq '[email protected]'"
$params = @{
"[email protected]" = "https://...
0
votes
1
answer
95
views
How to embed an image in a calendar event using MS Graph API
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&...
0
votes
1
answer
172
views
Requesting User Consent for Calls.AccessMedia.All for an application, but problem with AdminConsentRequired
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 ...
0
votes
1
answer
1k
views
Get-MgUserCalendar fails with "The specified object was not found in the store." for my own calendar
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 ...
1
vote
1
answer
275
views
Not able to get refresh token for Microsoft Graph API using access token in php
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 ...
0
votes
1
answer
224
views
Get calendar event titles and locations through Microsoft Graph API with "Can view titles and locations" permission
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?...
0
votes
1
answer
795
views
NodeJs AxiosError: Request failed with status code 403 (Mircosft Graph API)
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
...
2
votes
0
answers
161
views
Microsoft Graph subscriptions can't monitor recurring events instances
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 ...
2
votes
1
answer
373
views
Why getting error "'CalendarsRequestBuilder' does not contain a definition for 'Request' " graphClient.Me.Calendars.Request().GetAsync();
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<...
1
vote
0
answers
564
views
Microsoft Graph API: Querying calendar events using a custom ID or Field
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 ...
0
votes
2
answers
329
views
List calendar events from specific user using MS Graph API
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 ...
-1
votes
2
answers
4k
views
Error: "OrganizationFromTenantGuidNotFound" (even with Microsoft 365 subscription)
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 ...
0
votes
1
answer
814
views
Unable to read calendars of all users in my tenant
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 ...
1
vote
3
answers
1k
views
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 ...
0
votes
0
answers
112
views
Why does MS Graph calendar event deletion respond with Transfer-Encoding header, violating the HTTP spec?
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}, ...
1
vote
1
answer
811
views
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 ...
2
votes
1
answer
606
views
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 ...
0
votes
1
answer
897
views
Where are the deleted occurrences?
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 ...
-2
votes
1
answer
2k
views
Get calendar events from Microsoft.graph in ASP.NET Webforms
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 ...
1
vote
0
answers
197
views
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 ...
0
votes
1
answer
210
views
Are lambda filters on subproperties of calendar event collections allowed?
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@...
0
votes
1
answer
143
views
Getting group calendars via Microsoft 365 API
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:
...