14,399 questions
0 votes
0 answers
22 views
Single Value Extended Property to extract URL form mail body
I Tried of using this PidNameExtractedUrls Single Value extended property to extract the urlset from my mail body but it didn't worked This is the endpoint i used -> https://graph.microsoft.com/v1....
0 votes
1 answer
82 views
OneDrive sharedWithMe returns only one item
A request from a standalone application to the sharedWithMe endpoint returns only one item. Scopes used for authorization are: files.readwrite.all group.readwrite.all sites.readwrite.all ...
1 vote
1 answer
51 views
How can I reliably detect when a message is moved between folders in a shared mailbox using Microsoft Graph?
I’m building a workflow on top of a shared mailbox where each email acts as a ticket, and its folder represents its current state (New, In Progress, Waiting, Closed, etc.). To make this work, I need a ...
2 votes
0 answers
47 views
Managed Identity does not allow a call to MS Graph API
I created a user-assigned Managed Identity and granted it Sites.Read.All permission to MS Graph API. Then, I created a notebook instance on Azure Machine Learning and assigned it the created managed ...
-1 votes
0 answers
29 views
Office 365 Group - Email Settings [closed]
I am in the middle of trying to create some automated routines that create groups in O365 and add/remove members from them as needed. One of things I ran into is that when an email is sent to the ...
0 votes
0 answers
38 views
Graph API committing uploaded IOS IPA. Do I need to encrypt this file or not?
I'm attempting to send an IPA for an IOS application to our Intune instance for consumption as an LOB app. I've gone through all of the required incantations so far to get this to work in automation ( ...
Advice
0 votes
0 replies
19 views
Can i check how much time spent on mobile for ms office apps using graph API?
I know Graph API focuses on sign-ins, audit logs, and activity counts, not session duration. Office apps do not send “session end” events to Graph. If any one know another thing please suggest
0 votes
0 answers
39 views
ms-graph keeps only html body when creating drafts
I use ms-graph for sending emails and it works fine when I pass it a full html body that start with the <!DOCTYPE html> element. However, the same html is stripped down to its <body> ...
1 vote
1 answer
63 views
Getting error "invalidRequest" when filtering based on lastModifiedDateTime (Microsoft Graph API)
I am using the below filters for the graph api request. ?$filter=lastModifiedDateTime ge 2023-10-06T06:48:54Z&$select=name,lastModifiedDateTime,@microsoft.graph.downloadUrl I am getting the ...
0 votes
1 answer
55 views
Microsoft OAuth Refresh Not Found
I set up a job that periodically fetches a new access token with the refresh token, but after hundreds of successful executions over the last couple of days, I just got the following error: Client ...
Advice
0 votes
1 replies
48 views
In which scenario the UsersRequestBuilder.get() from Microsoft Graph SDK will return null?
I am using the com.microsoft.graph.serviceclient.GraphServiceClient class to retrieve users: UserCollectionResponse userCollectionResponse = graphClient.users().get(conf -> { conf....
0 votes
1 answer
39 views
Certificate issue while sending emails with Graph API
When I try to send emails with Graph, I sometimes get an error as if we don't have the certificate. But the certificates are there, because otherwise emails wouldn't be sent. The error is in the Graph ...
Advice
0 votes
3 replies
170 views
How to read Azure AD (Entra ID) groups and users with Microsoft Graph SDK in C#, if I only have a user account (no admin rights)?
I’m trying to build a small C# console app that lists all Azure AD / Entra ID groups and the users inside them (including nested members). The end goal is to sync these groups and users into Dataverse ...
3 votes
1 answer
56 views
Access denied when downloading file written to OneDrive using Microsoft Graph API with Files.ReadWrite.All scope
I have a mobile app (Flutter) where I'm allowing the user to backup their data to their personal OneDrive, so if they lose their device they can restore data from their OneDrive. I'm using a delegated ...
2 votes
1 answer
106 views
How to access Planner Premium data (Dependencies, Resources, Dates, Custom Fields) using Microsoft Graph API or any REST API?
I’m working with Microsoft Planner Premium (the new unified Planner experience) and need to access project data through an API. I’m trying to get details such as: Task dependencies (Depends on, ...