Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
46 views

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 ...
Lucky Ali's user avatar
1 vote
0 answers
37 views

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 ...
slowcar's user avatar
  • 374
0 votes
1 answer
64 views

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/...
Jeff McKay's user avatar
1 vote
1 answer
52 views

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 ...
Baz's user avatar
  • 199
0 votes
1 answer
178 views

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?...
sparks's user avatar
  • 1,296
0 votes
0 answers
28 views

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 ...
Rafa Ayadi's user avatar
0 votes
1 answer
167 views

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: ...
Frederik's user avatar
0 votes
0 answers
164 views

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 ...
Frederik Gysel's user avatar
0 votes
0 answers
54 views

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 ...
Sigurd Nes's user avatar
0 votes
0 answers
82 views

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 ...
creativemind's user avatar
1 vote
0 answers
186 views

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 ...
InD's user avatar
  • 279
1 vote
0 answers
50 views

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 ...
Sandro Jijavadze's user avatar
0 votes
1 answer
643 views

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 ...
Piyush Chugh's user avatar
1 vote
1 answer
453 views

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....
Charlie's user avatar
  • 11
1 vote
1 answer
125 views

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 ...
Chiril's user avatar
  • 21
1 vote
2 answers
4k views

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/...
Daan's user avatar
  • 3,068
0 votes
1 answer
200 views

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'...
user21420442's user avatar
0 votes
0 answers
397 views

I was using this code earlier with GraphAPI version 5.75.0 CustomRequest<String> request = new CustomRequest<>(String.format(...
Coder's user avatar
  • 21
2 votes
0 answers
382 views

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: { &...
Sachin Pandey's user avatar
-1 votes
1 answer
516 views

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 ...
Jan-Bernd's user avatar
1 vote
1 answer
2k views

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 ...
Lorenzo Righini's user avatar
0 votes
1 answer
571 views

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 ...
ragingdev's user avatar
0 votes
1 answer
549 views

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-...
Bobort's user avatar
  • 3,238
0 votes
1 answer
140 views

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 { /* ......
tschmit's user avatar
  • 7,840
0 votes
1 answer
239 views

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 ...
John Balvin Arias's user avatar

1
2 3 4 5
11