Questions tagged [outlook-graph-api]

22 questions
5
votes
0 answers

HTTP 503 with ResourceUnhealthy

Sometimes Microsoft outlook or graph API return HTTP 503 ResourceUnhealthy error response for specific mailboxes. The description mentions: ResourceUnhealthy SystemMemoryProtectionUtilizationMonitor is unhealthy What does it means and what may…
3
votes
0 answers

Getting all mails from a shared folder in Outlook using Graph API

I am trying to get all mails from a shared folder in the following location (Folder2): \Public folders - me@domain.com\All public folders\Folder1\Folder2 I want to do this using Blue Prism as I am a RPA developer. This means that I am going to use a…
2
votes
0 answers

Create events with a specific Id

I need to create events that are "updated" by an external application. Every time an entity is updated on the application (e.g: the description) I have to mirror that to the corresponding event in the Outlook calendar. The idea is to avoid storing…
Gnegno
  • 366
  • 1
  • 5
  • 15
2
votes
1 answer

Using MS Graph API is it possible to just list the email attachments without downloading the its content?

We're using MS Graph API to get the list of emails from an Outlook 365 mailbox. We have a requirement to list the attachments in every email. When using the List Attachments endpoint of the Graph API, the contentBytes attribute value in the response…
2
votes
1 answer

Outlook Graph email API: Threaded Email Conversations

I have an application that I have to integrate with the outlook via Graph API. I need to retrieve the conversations which I am getting using the Graph Mail API. But the graph API is not able to return the object of the email in the form of…
1
vote
4 answers

Graph API - Getting "The remote server returned an error: (400) Bad Request."Error while request AccessToken using multiTenant

Actually I'm trying to get Access Token using Using the TenantId after Admin consent successfully completed admin by using the following endpoint https://login.microsoftonline.com/common/adminconsent then I am requesting the AccessToken Endpoint…
1
vote
1 answer

Filter out declined events

I need to use microsoft graph api, more in detail the calendar one, to retrieve some events of the users (up to 1000 entries). I need to filter out the events that the user have declined. That information is stored in the assignee resource, or…
Gnegno
  • 366
  • 1
  • 5
  • 15
1
vote
2 answers

Is it possible to restrict the Application API permissions of an Azure AD web application to one account?

I'm developing an AWS Lambda function which will need to access an Outlook 365 inbox at a regular interval. I'm using Graph API for accessing the inbox. I created a new Azure AD web application registration using the Azure Active Directory admin…
1
vote
1 answer

Outlook Add-In | Graph API Configuration

Requirement: When user clicks on Custom Command Button send a Email. Access Token: We are getting the Access Token using the below code. Office.context.mailbox.getCallbackTokenAsync({ isRest: true }, function(result) {}) What we achieved: We are…
1
vote
1 answer

Outlook REST API Flagging Message losing start date

I'm building an Outlook Add-In and using the Outlook REST API 2.0. When updating a mail message to flag the message for follow-up, the update is accepted and in the Outlook Web client it briefly shows the start and due dates, but within a few…
1
vote
0 answers

Outlook app-level modifications, establishing connection between widget and Outlook on-click

I am working on creating an email widget to display it on home-screen of Hololens. I am using Outlook API and Unity to do this. On clicking any of the emails on widget, it should open the same email in Outlook App. Could you guys help me with the…
1
vote
1 answer

How to $filter attachments list endpoint by isInline?

I'm developing OWA add-in using OWA REST API I'm not able to get the filtered result when fetch the attachment list with $filter=inlinImage eq true for…
0
votes
0 answers

Can't Access Outlook Calendar Events From A Personal Hotmail Account Using Microsoft Graph API

I am trying to accomplish what I believed to be a simple task, but has turned into nothing short of a nightmare. My goal is to create an AWS Lambda function that will be invoked whenever a user submits an inquiry form on my website. The form…
0
votes
0 answers

Receiving extra updated change notification through webhook on creation and deletion of outlook event

I want to receive change notification on create, update and delete of outlook events. I created a subscription by following https://learn.microsoft.com/en-us/graph/change-notifications-delivery-webhooks?tabs=http var options = { method: "POST", …
0
votes
1 answer

Fetch microsoft outlook calendar events using graph api in Node.js

I am trying to create the simplest calendar application that can show users calendar events for microsoft outlook users. I am using @azure/msal-node for authentication. I am using GET https://graph.microsoft.com/v1.0/me/calendar/events to fetch…
1
2