966 questions
2
votes
1
answer
157
views
Download ICS from outlook.com using HttpClient
Does anyone see what I'm doing wrong? Why can't I download a calendar file from outlook.com using HttpClient?
Whatever I try, Outlook will throw a http 302 error and redirect to an OWA error page ...
1
vote
1
answer
102
views
MS Graph SDK - How to perform date range query to get emails in certain time frame?
I'm using the python MS graph sdk to try to perform a query. I'm able to successfully get all of the user's emails, but I can't seem to be able to use the sdk to get the emails from a certain time ...
1
vote
2
answers
24
views
Understanding backed reconcile keys for Email Grouping in Outlook's "Show as Conversation" View
I'm seeking your assistance to better understand how the Outlook client groups emails when the "Show as conversation" view is enabled for the same email chain. I have reviewed the email ...
0
votes
1
answer
182
views
How to create read-only calendars in Outlook.com
This is a question how to best architect a solution.
I run an application that generates calendar events. Now several of our users want these events in their preferred calendar app. So we built a ...
0
votes
1
answer
134
views
unable to get the emails from outlook by using graph api - getting NullReferenceException: Object reference not set to an instance of an object error
unable to get the emails from outlook by using graph api get method
public List<Message> GetAllMails()
{
List<Message> mails = new List<Message>();
//var ...
0
votes
1
answer
166
views
How to Fetch All Group Calendars in My Tenant Using Delegated Permissions?
I'm currently working on fetching the list of groups using app-only permissions and accessing group calendars using delegated permissions. However, I am facing limitations where I can only fetch ...
0
votes
1
answer
738
views
MSAL.js "offline_access" Scope Missing from Token Response
unable to see offline_access Scope Missing from Token Response
I'm using MSAL.js in my Outlook Add-in to authenticate users and obtain tokens. My configuration includes the offline_access scope, but ...
0
votes
1
answer
188
views
Tracking User Activity in Outlook App (Windows) with .NET MAUI Blazor Hybrid App
I am currently developing a .NET MAUI Blazor hybrid application for Windows and have a requirement to track user activity in the Outlook app, specifically, to identify whether the user is spending ...
0
votes
0
answers
156
views
how to convert .msg file into Exchange.EmailMessage object in .net c#
I need to open and convert a .msg file from disk into Exchange EmailMessage object in order to iterate it and do some operations. It can be possibile? I cannot find something useful on internet.
There'...
0
votes
1
answer
90
views
Outllok add in REST call: RequestBroker-ParseUri -- "Resource not found for the segment 'Q7GceiTKAvvXBwAtYompjmwrRqF359uQTkd1AAAAQTkd1AAAHjsV0AAA='."
I am using Outlook add in REST call to get attachment details. But I am receiving an error that says:
{
"error": {
"code": "RequestBroker--ParseUri",
"message": ...
0
votes
1
answer
94
views
Moving Mail from one folder to another using message-id in outlook using win32com.clent
I was trying to move email from one folder to another using message id. The code is mentioned below:
def move_email_by_message_id(self, from_folder, to_folder, msg_id):
try:
# ...
0
votes
1
answer
151
views
Outlook Node.js, Taskpanel close when email is moved
I have an outlook web-add which performs the action of moving mail to another folder using the GRAPH API. I want to do display a message when the action is done (when the server' response is received) ...
2
votes
1
answer
867
views
How to see mails sent through Microsoft Graph API in Outlook Sent mails folder
Is it possible to see mails sent through Microsoft Graph API in Outlook Sent mails folder? I thought this was automatic, but apparently when I send an email via Microsoft Graph the address that sent ...
0
votes
1
answer
257
views
Microsoft-365 outlook email message templates list via microsoft graph api
I'm looking for the program way of retrieving of Outlook email message templates (templates list and template's inside content) in Microsoft 365. I've already spent some time with Microsoft Graph API ...
1
vote
1
answer
270
views
How to Get ToDo Task List sharings and Task Groups from Exchange with EWS?
Is it possible to get the permissions on a shared task list with EWS or Graph API? Also, how to get the Task Groups via API?
0
votes
1
answer
36
views
Can we add webhook/trigger on when Admin uninstall SaaS app from Microsoft app source
we have created SaaS application for outlook calendar.
we have to delete database records when app got uninstalled from marketplace.
0
votes
1
answer
978
views
Sites list getting empty results in graph API
We are getting empty results even though we are having sites in the sharepoint account.
API - https://graph.microsoft.com/sites
MS Documentation
Method - GET
We have Sites.Read.All and Sites.ReadWrite ...
0
votes
1
answer
162
views
Downloading MIME content in Outlook Rest API is too slow
I need to download MIME contents from Outlook API in Microsoft Graph. All other requests are completely fine, but endpoint for fetching the MIME message sometimes takes too much time.
Documentation
...
1
vote
1
answer
5k
views
Microsoft Graph Read Mail from @outlook.com account using app-only authentication
I am using this tutorial as a base to be able to read mail from my @outlook.com account using Microsoft Graph:
https://learn.microsoft.com/en-us/graph/tutorials/dotnet-app-only?tabs=aad
I've done the ...
0
votes
1
answer
420
views
How to integrate Outlook calendar for MS work account users using Spring Boot?
I want to build a feature where I want to sync users outlook calendar with my app. Any event which users create/reschedule/delete from my app should reflect in users outlook calendars. First step for ...
0
votes
1
answer
497
views
Outlook 365 file attachment option auto-applies CSV column headers
I need to develop an integration using Mule which will create a *.csv file without headers, and email the file content as email attachment using Outlook 365.
Using DataWeave 2.0, I defined output ...
0
votes
0
answers
511
views
microsoft Graph API for subscription throwing wrong message and not creating subscription
I am using Microsoft graph API and trying to create a subscription on the Microsoft developer portal.
https://graph.microsoft.com/v1.0/subscriptions I am hitting this URL with post request call as ...
2
votes
1
answer
5k
views
microsoft graph API - $filter with from email & $search
I need a Microsoft graph API query to retrieve mails based on from email filter & contains a particular word.
There are ready API's to do these thing individually.
To retrieve mails based on from -...
0
votes
1
answer
128
views
Schedule email notification to outlook contact using Python3.6
I need to send weekly email notifications to corporate contact in outlook using Python3.6
I tried smtplib but it works for gmail, doesn't work for outlook contact.
I tried win32com.client, but it is ...
1
vote
1
answer
1k
views
How to Select all Property Except one from Graph API message?
Is there any way to Select all Property Except one from Graph API message?
Query: https://graph.microsoft.com/v1.0/users/albert@*****.onmicrosoft.com/mailFolders/inbox/messages?select=*
Is there any ...