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

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....
Dinesh's user avatar
  • 1
2 votes
1 answer
164 views

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 ...
steb's user avatar
  • 662
0 votes
1 answer
168 views

Trying to read mail using EWS but getting below error Error acquiring access token: MSAL.NetCore.4.72.1.0.MsalServiceException: ErrorCode: invalid_client Microsoft.Identity.Client.MsalServiceException:...
Saranya Subramanian's user avatar
1 vote
1 answer
125 views

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

Because Microsoft is phasing out EWS in a rather unusual fashion I am rewriting all of my code to use Microsoft Graph. Some things are quite easy and neat to rewrite. Copying a Message is not one of ...
Hielke Hoeve's user avatar
1 vote
2 answers
27 views

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 ...
Maddy's user avatar
  • 11
0 votes
1 answer
93 views

I developed a query for Outlook contacts using GraphQL via the API. However, in the Outlook web interface, you can see that under 'All Contacts' there are many more contacts displayed than those I get ...
user3294356's user avatar
0 votes
1 answer
188 views

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 ...
Bert Goethals's user avatar
1 vote
0 answers
99 views

I want to create a program that creates a calendar event on Outlook that contains a teams meeting link and invites other people to it. From the Microsoft Graph API documentation, it seems that I have ...
Shady Adel's user avatar
0 votes
1 answer
138 views

unable to get the emails from outlook by using graph api get method public List<Message> GetAllMails() { List<Message> mails = new List<Message>(); //var ...
Gokulsusan's user avatar
1 vote
0 answers
128 views

How to download an Outlook image attachment using Power Automate: I am trying to download an image using Power Automate, but it gives me data instead of an image in the email body. "attachments&...
Jerry's user avatar
  • 11
0 votes
1 answer
175 views

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

generally in graph we can obtain the high level details of a folder using folder query and next level details such as the data of emails were obtained using message query usually the high level data ...
sriram's user avatar
  • 15
0 votes
1 answer
750 views

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 ...
Waqar's user avatar
  • 3
1 vote
1 answer
1k views

We are creating an app to provide email services. The user can schedule the email sending as well. For proof of concept using Microsoft Graph API on Java we created an app on Microsoft Azure, set up ...
Bhavin 's user avatar
0 votes
1 answer
191 views

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 ...
Suman Mondal's user avatar
2 votes
1 answer
816 views

I want to read certain email messages and filter them. I am using Microsoft Graph API to query the office 365 mail box as below. I also added API permission "Mail.ReadBasic.All" for getting ...
avantdev's user avatar
  • 2,740
0 votes
0 answers
166 views

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'...
Cardo's user avatar
  • 1
-1 votes
1 answer
369 views

I have to store outlook emails data which triggered to my organization email id like Sender id, recipient id, email body and attachments in a SQL Server database using ASP.NET Core. Can you please ...
swapnil sawant's user avatar
0 votes
1 answer
96 views

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": ...
Pearl's user avatar
  • 1
0 votes
1 answer
1k views

I've been working on developing Outlook Add-ins and I'm currently trying to create a customized ribbon tab within Outlook. I've followed the tutorial provided by Microsoft, which has been great for ...
micex's user avatar
  • 73
0 votes
1 answer
94 views

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: # ...
Abin Jilson's user avatar
0 votes
1 answer
935 views

In a POC using the new extension point ReportPhishingCommandSurface, I try to get an access token (in order to submit graph API call), however the method always return "SSO failed with "5001&...
Plann1n3's user avatar
0 votes
1 answer
153 views

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) ...
Plann1n3's user avatar
-1 votes
1 answer
610 views

Microsoft continuously enhances its products and services, and there are multiple APIs available for interacting with Outlook features. For my specific use case, I need to access Outlook Tasks within ...
Kishan Vaishnani's user avatar
2 votes
1 answer
895 views

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 ...
G. Caldironi's user avatar
0 votes
1 answer
48 views

I am extracting the subject, sender and the body of a mail and sharing these to another application using outlook add-in. The payload looks like this: var payload = 'Subject: ' + '\n' + subject + '\n'...
Pearl's user avatar
  • 1
0 votes
1 answer
273 views

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 ...
Bohdan's user avatar
  • 187
0 votes
2 answers
101 views

I use the new Outlook beta client on Windows (1.2023.607.100). I'm trying to convert old OutlookAddin to the new version. In one of them, I have to change the ReplyRecipients property. Before i was ...
Dadv's user avatar
  • 423
1 vote
1 answer
279 views

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?
Rafa Ayadi's user avatar
0 votes
0 answers
79 views

I'm writing a Outlook add-in, I've added ReadWriteMailbox permission. I'm able to get token & message details using getCallbackTokenAsync and /v2.0/me/messages/ API. But when I try to set Office....
Vishvesh Phadnis's user avatar
0 votes
1 answer
43 views

we have created SaaS application for outlook calendar. we have to delete database records when app got uninstalled from marketplace.
Mohan Krishna's user avatar
0 votes
1 answer
1k views

I am working with the Microsoft Graph API to get Mailboxes from an authenticated user and I want the mailboxes in the order as how it is also displayed in Outlook itself. https://graph.microsoft.com/...
Edwin B's user avatar
0 votes
1 answer
1k views

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 ...
karthik's user avatar
  • 201
1 vote
0 answers
54 views

As the new meeting is created , all the meeting details like subject, organizer and start time of meeting all these details I want to store into the Dynamic CRM table on click of the outlook(app) send ...
Uzma Khan's user avatar
0 votes
1 answer
168 views

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 ...
Burak Kaan Köse's user avatar
0 votes
1 answer
145 views

I'm trying to use the Microsoft Graph API to retrieve an Outlook Group Calendar. By this, I mean one of the calendars that appears in the "groups" section in Outlook, like in this picture: ...
Master_T's user avatar
  • 8,191
1 vote
1 answer
5k views

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 ...
Garry English's user avatar
1 vote
1 answer
284 views

I'm not able to send a POST or PATCH action thru the connector because I can't figure out how to compose the body correctly. I try it that way: But I get this error: I try it without brakets, with ...
NewOne's user avatar
  • 11
0 votes
1 answer
420 views

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

API Availability? - Is there any APIs to subscribe create contact category resource? We are currently using the contact folder subscription for that we are facing the below issue. Issue description -...
karthik's user avatar
  • 201
0 votes
1 answer
503 views

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 ...
Sambit Swain's user avatar
1 vote
3 answers
709 views

I want to read PidTag properties from a specific e-mail message via Graph API REST call. For singleValueExtendedProperties that is no problem as each of them has a specific GUID and in the filter ...
DonMarc0's user avatar
0 votes
0 answers
519 views

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 ...
sumit raina's user avatar
1 vote
1 answer
1k views

I tried to schedule a online meeting using create event api from personal account. The online meeting is created as a normal calendar events. When I tried to schedule a online meeting from Teams UI, ...
Kaviraj Selvan's user avatar
2 votes
1 answer
5k views

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 -...
Sai T's user avatar
  • 95
0 votes
2 answers
224 views

Hi we have a system that already has a large userbase (100k+) of microsoft users which we push updates to, using the refresh token we have saved during their inital signup. The REST APi will get ...
Dumi's user avatar
  • 146
0 votes
1 answer
130 views

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 ...
Shruthi Rajashekhar's user avatar
0 votes
1 answer
228 views

I have created a rails app. It sends emails to customers based on some parameters. The customers only use outlook as their mail app. The customers may accept/decline the invite. If a customer declines ...
Vinit Kumar's user avatar
1 vote
1 answer
1k views

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 ...
Susi_003's user avatar

1
2 3 4 5
20