14,404 questions
0
votes
0
answers
45
views
OneDrive sharedWithMe returns only one item
A request from a standalone application to the sharedWithMe [1] endpoint returns only one item.
Scopes used for authorization are: files.readwrite.all group.readwrite.all sites.readwrite.all ...
1
vote
0
answers
31
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 ...
0
votes
0
answers
26
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
16
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
1
vote
1
answer
53
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 ...
Advice
0
votes
1
replies
44
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....
Advice
0
votes
3
replies
121
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 ...
2
votes
1
answer
85
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, ...
-1
votes
1
answer
63
views
Which permission to list subscription on Azure tenant?
I want to read all subscription on my Azure tenant.
https://learn.microsoft.com/en-us/graph/api/subscription-list gives a list of scopes/permissions. list requires Sites.ReadWrite.All on the endpoint ...
0
votes
0
answers
46
views
Using Bot Framework “Seen” Feature with RSC Permissions — Installation Restrictions Issue
We’re trying to implement the “seen” feature in our Microsoft Teams bot built using the Bot Framework. Our use case is to send proactive messages to users and track whether they have seen those ...
0
votes
0
answers
37
views
Microsoft Graph API: Intune Win32 App Upload - commitFileFailed Error After Successful API Calls
I'm experiencing persistent commitFileFailed errors when uploading .intunewin files to Microsoft Intune via the Graph API. All API calls return success status codes, but the final commit processing ...
0
votes
0
answers
77
views
Teams bot receiving 403 Forbidden when downloading inline images
Teams app that we built creates group chats, listens to messages/attachments and forwards them to our internal chat.
Here is the response im getting for roughly 50% of attachments when attempting to ...
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 ...
0
votes
0
answers
44
views
Multiple Change Notification from Microsoft Graph, how to solve this?
I am trying to receive change notifications from Microsoft Graph whenever an event is updated (created, deleted, or updated).
I have successfully managed to create subscriptions. The URL that receives ...
0
votes
1
answer
79
views
Getting message Id from MS Graph API sendMail()
Previously, I was successfully sending emails with this code.
SendMailPostRequestBody postRequest = new SendMailPostRequestBody();
postRequest.setMessage(message);
postRequest.setSaveToSentItems( this....
1
vote
1
answer
86
views
Unable to generate Microsoft OAuth Refresh token
I am trying to setup a Microsoft Entra based OAuth using @azure/msal-node package and unable to generate the refresh token.
Use-case:
Access the APIs once the user authenticates and keep using the ...
1
vote
1
answer
45
views
Attachment dropped when sending mail using Graph API
I am sending a mail using the graph API from a shared mailbox ([email protected]).
There is a .CSV file added to this POST call. The mail is sent with the correct subject and body. However, the ...
1
vote
0
answers
37
views
AllowedResponseOptions for messages with Microsoft Graph [duplicate]
When retrieving a message with EWS, I get an attribute AllowedResponseActions (see documentation). This reports if the meeting request cannot be forwarded for example, or a read notification cannot be ...
1
vote
0
answers
93
views
Will Microsoft Graph authentication to Windows authentication work?
I currently use Microsoft Graph authentication in my application to get user information from Azure AD (e.g., profile, photo, list of AD users). However, I will soon lose access to Microsoft Graph and ...
-3
votes
1
answer
80
views
Creating Teams Team via HTTP results in 403
When making a post request:
{
"displayName": "My Team",
"description": "",
"visibility": "public",
"members": [
{
...
1
vote
1
answer
37
views
Listing metadata for sharepoint files using Microsoft.Graph - breaking changes between version 4 and 5
I'm upgrading from Microsoft.Graph 4.36.0 to 5.92.0, and there are changes to the SDK.
In 4.36.0, the following code creates a list of dtos with various metadata for each file:
public async Task<...
0
votes
2
answers
64
views
How to exclude specific Outlook messages from tracking using Microsoft Graph API without breaking the thread?
I’m building a multi-provider email client that tracks sent/replied/forwarded messages.
For Gmail, I can easily exclude specific messages from my tracking mechanism by adding a custom header (e.g., X-...
0
votes
1
answer
133
views
C++ MAPI: how to define named properties corresponding with a contact's email address?
I'm trying to convert a Microsoft.Graph.Contact object into a PST file for Outlook using Extended MAPI, and I don't know where to feed the contact's email addresses to and have it show when I open the ...
0
votes
0
answers
36
views
Prevent SharePoint Word documents from being opened in the desktop application
I'm working on a SharePoint Embedded solution which, among other things, creates Word document view/edit links using the Graph API endpoint createLink : https://learn.microsoft.com/en-us/graph/api/...
0
votes
1
answer
69
views
Authenticating using GraphAPI ConfidentialClient
Some of our customers are unable to send out automated emails because support for basic authentication with SMTP is being removed.
I am looking at finding a solution and it seems the Graph API is the ...