520 questions
0
votes
0
answers
46
views
Unable to get webLink for Microsoft 365 Group messages using Microsoft Graph
If a user is added to a Microsoft 365 group, they receive new mails in their inbox,
but previous mails remain inside the group mailbox (visible in Outlook under Groups).
I want to search a work order ...
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 ...
0
votes
1
answer
64
views
Bug in Microsoft Graph messageRules
I am attempting to read the list of mailbox rules in a M365 client using this url (actual user name changed):
GET url=https://graph.microsoft.com/v1.0/users/[email protected]/mailFolders/inbox/...
1
vote
1
answer
52
views
Paging data in Microsoft Graph SDK using the ruby gem
I am trying to find some information on how to page data in the Microsoft Graph gem? Specifically paging over messages in a folder. There does not appear to be a PageIterator in the gem (similar to ...
0
votes
1
answer
178
views
How do you get the response after sending an email in Microsoft Graph
How do you get the response after sending an email using Microsoft's Graph API? For example, after the below code runs, how do I get responses such as HTTP/1.1 202 Accepted or HTTP/1.1 400 Bad Request?...
0
votes
0
answers
28
views
Create message as SENT with Graph API and MimeContent
Following this documentation, I would like to create a message from MimeContent and set it as sent and not draft.
I am aware that you can create a message with JSON and set the Extended properties to ...
0
votes
1
answer
167
views
How to move a Mail with the Microsoft Graph API after sending it
I saw different Questions, about getting the ID after sending a draft and it seems to me that the ImmutableId header thing is the solution for that, but in the documentation for that it says this:
...
0
votes
0
answers
164
views
Sending large attachments with MS Graph API
I came accrosss below article about sending large attachments with the MS Graph API:
https://learn.microsoft.com/en-us/graph/outlook-large-attachments?tabs=http
Basically, if I understand well, I have ...
0
votes
0
answers
54
views
How to fetch messages from a spesific folder, and move to another using Microsoft Graph SDK for PHP
I am trying to read messages from a mailbox by means of Microsoft Graph SDK for PHP.
I want to read from a specific folder - set the 'isRead' to true - and move the email to another folder.
I suppose ...
0
votes
0
answers
82
views
ASP.NET Core Identity and Microsoft Graph integration: issues with token expiration
We have an ASP.NET Core web application with two authentication flows:
ASP.NET Core Identity for standard user authentication
External authentication using Microsoft 365
We're working on a new ...
1
vote
0
answers
186
views
How to open an e-mail in edit mode (Microsoft Graph API)
The Situation:
We use the Microsoft Graph API to create a draft message for a user. This works without any problems and in the corresponding response we get the webLink with which we can access/open ...
1
vote
0
answers
50
views
Microsoft Graph API: microsoft stops sending change notifications
We have a large number of subscriptions to /users/<userID>/messages with different user ids.
At some point the service stops receiving notifications for some of the subscriptions even though ...
0
votes
1
answer
643
views
When sending emails using Microsoft Graph API, what's the correct way to send more than 150 MB within 5 minutes?
Background:
We have created 2 Azure single-tenant apps with the same set of permissions (Mail.Send & Mail.ReadWrite) within the same tenant. As per Graph API's documentation, we should be able to ...
1
vote
1
answer
453
views
Need help how to retrieve attachments from a message using graph sdk 5.5
I have used c# code with graph sdk 5.5 to access office 365 mailbox.
I can read all the messages via my code, but cannot retrieve any attachments.
Cannot found any working example that works for SDK 5....
1
vote
1
answer
125
views
Identifying Necessary Microsoft Graph API Permissions for App Functionality
I'm developing a Microsoft 365 application using the Graph API to enhance email functionality. It involves reading, sending, and organizing emails through Graph API endpoints.
The app encounters ...
1
vote
2
answers
4k
views
What is the easiest way with Microsoft Graph to access email messages?
I am new to Microsoft Graph and I want to use it to read and move email messages. This is my C# code:
static async Task Main(string[] args)
{
var scopes = new[] { "https://graph.microsoft.com/...
0
votes
1
answer
200
views
MS Graph (Outlook) List messages 'ReceivedDateTime GT' operation failing by 1 second
The MS Graph (Outlook) List messages 'ReceivedDateTime GT' operator is failing by 1 second !
If you add 1 second to the desired 'ReceivedDateTime', you get emails with precisely that 'ReceivedDateTime'...
0
votes
0
answers
397
views
Microsoft Graph API , http request with header
I was using this code earlier with GraphAPI version 5.75.0
CustomRequest<String> request =
new CustomRequest<>(String.format(...
2
votes
0
answers
382
views
$select=body not working while creating Subscription | Microsoft Graph API
Description
I'm encountering an issue while attempting to create a subscription to receive change notifications, including resource data, in the Microsoft Graph API. Here's the payload I'm using:
{
&...
-1
votes
1
answer
516
views
Reading mail content from m365 group mailbox
I'm developing a solution in which I want to react on incoming mails from a group mailbox (not a shared mailbox) and store the content of the mail, including attachments, in a SharePoint library.
I ...
1
vote
1
answer
2k
views
How to grant delegate access to a specific O365 Shared Mailboxes for a System Managed Identity
Would it be possible for a System Managed Identity to be granted delegate access to certain Office 365 Shared Mailboxes, then query them using Graph API?
I have an Azure Automation runbook running a ...
0
votes
1
answer
571
views
Mailboxusage report via Graph api gives back hash values
We are trying to get a mailboxusage report from Microsoft Graph API.
We are using an azure app registration with application permission Users.Read.All; Reports.Read.All; User.Export.All
We also tried ...
0
votes
1
answer
549
views
Django - Office 365 send message via distribution group
I'm trying to send email in Django using a distribution group as a the DEFAULT_FROM_EMAIL setting. I am using Office 365 to send it. I have wrestled with the package called django-o365mail and python-...
0
votes
1
answer
140
views
how to receive anly the Id of a newly created email draft by using microsoft-graph
With Microsoft Graph 4 I used to write my queries myself.
For an draft creation I used (I remove error handling for brevity):
using GM = Microsoft.Graph.Models;
GM.Message mgm = new GM.Message { /* ......
0
votes
1
answer
239
views
move folder to another one microsoft API getting this error: ErrorItemNotFound
I created an app with permissions:
Mail.ReadWrite
offline_access
User.Read
So then I get the permissions from the user and get the final token.
I'm able to get the emails with GET /me/messages/
I'm ...