21 questions
0
votes
0
answers
38
views
Encountering an ERR_BAD_REQUEST error when trying to use the Outlook Calendar API
I have created an application in app registration in Azure admin exchange, and i am trying to use the Outlook APIs, using the clinetid, tenant id and secret key, But i am getting ERR_BAD_REQUEST error ...
1
vote
1
answer
2k
views
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....
0
votes
2
answers
209
views
Fetch List of messages using message id of 500 mails using java
As per documentation we have two ways to fetch mails using Graph api.
Using $filter with .top(int ) we can fetch list of messages.
Using message id we can fetch a single mail.
I have 50000 mails in ...
-3
votes
1
answer
820
views
Microsoft Graph Api not filtering calendar events correctly
I am trying to use filter operator to find the events between specific date and time. Now, it only searches single events, any occurrence of recurring events are being excluded.
Following i tried in ...
0
votes
4
answers
3k
views
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
...
2
votes
0
answers
157
views
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 ...
1
vote
1
answer
613
views
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 ...
0
votes
1
answer
289
views
Microsoft Graph To Do API: How to get only Outlook tasks?
We have a solution built on the Outlook Tasks API, which is now deprecated and will stop working in August 2022.
We'd like to transition to the To Do API with as low effort as possible (for now).
So ...
0
votes
1
answer
111
views
Is msal-browser fit/safe for use for Outlook Addins in acquiring GRAPH tokens?
I have an outlook addin that runs on REST-APIs. I want to migrate it to GRAPH and I am currently exploring the possibility of using the MSAL-browser library to get the GRAPH access tokens. I am ...
0
votes
1
answer
1k
views
How to specify search option with MS graph java SDK
IMessageCollectionRequest eventRequest = graphClient.getGraphClient().users(user.getEmail()).messages()
.buildRequest(new HeaderOption("Prefer", "outlook.body-content-...
5
votes
0
answers
2k
views
HTTP 503 with ResourceUnhealthy
Sometimes Microsoft outlook or graph API return HTTP 503 ResourceUnhealthy error response for specific mailboxes.
The description mentions: ResourceUnhealthy ...
2
votes
1
answer
3k
views
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, ...
1
vote
2
answers
3k
views
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 ...
2
votes
1
answer
440
views
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 }, ...
2
votes
1
answer
2k
views
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 ...