Questions tagged [outlook-api]

120 questions
0
votes
1 answer

How to automate outlook api calls for mail read

I have an app in NodeJS which calls the outlook api and reads a user's mails. I'm connecting this to a MySQL db where I'm storing specific email replies.The app is working perfectly. My problem is that I have to sign-in every hour to refresh the…
0
votes
2 answers

Microsoft Graph Get Calendars of All Users

I'm trying to use the Microsoft Graph API to get the calendars of all the users in an organization. Is there a way for an admin with the appropriate permissions can get all user calendars with one request to the API? I'm aware that it is possible by…
0
votes
1 answer

Can the Event ID for two or more events be the same for any user in Outlook Calendar API?

I am using outlook calendar api to manage users calendar on a CRM. And as per my knowledge, event ID's for any user are always unique for the events on their calendar. But, in some cases, when I fetch the events for a time window, I get two events…
0
votes
2 answers

any way to disregard organizers schedule in graphapi findmeetingtimes? and all day meeting bug?

Any way to disregard organizers schedule in findmeetingtimes and is there a bug where findmeetingtimes is not observing all day meetings? I am trying to find out if room1 is available 4/20/2018 between 8am-9am I am trying this json body, but getting…
0
votes
0 answers

Can I use the Microsoft logo inside the "Sign up with Microsoft" button on my app

Since my application integrates with Outlook and the users should sign up via the Microsoft (office365 or Live) sign up page is there any special design guidelines I should follow for the signup button like the ones required by Google. If not, can I…
0
votes
1 answer

Cross origin POST request not working for Outlook API

I'm using this part of the Outlook API. It says that you should be able to do a post request, however when I try I get the following error: Failed to load https://login.microsoftonline.com/common/oauth2/v2.0/token: No 'Access-Control-Allow-Origin'…
Ethan
  • 3,410
  • 1
  • 28
  • 49
0
votes
1 answer

Calls to Office365 API to synchronize events, throttling

I am trying to synchronize a few events from Outlook to my local DB and I call the API as below: $url = 'https://outlook.office365.com/api/v2.0/users/' . $this->user . '/CalendarView/' . '?startDateTime=' . $start_datetime . '&endDateTime='…
An Schultz
  • 13
  • 5
0
votes
1 answer

OAuth2 : How to get authorization code from Outlook API for Authentication in Unity?

I'm developing a desktop application with Unity and I need to check if the user can log in Outlook to have access to my app. So, I'm following this process from Microsoft docs and I'm trying to figure out how I can open Outlook API login page and…
0
votes
1 answer

Outlook API for access token returns 400 bad request in Java Spring

The code does not seem to have any error. This is a test app and all the Ids are usable. In the function getToken() one can alternatively unblock the line call for getScopes() and try further. I have an index.jsp with a button. On button press…
0
votes
1 answer

How to get default selected format from outlook in add-in using Javascript

If default format in outlook selected as a html or Text or Rich Text. So In outlook add-in how we fetch format from outlook setting using JavaScript.
codeur
  • 120
  • 8
0
votes
1 answer

Azure AD App-only token to consume outlook REST API

I am developing a console app in .net which will send mail using the Azure AD application. I followed all the step from generating the certificates to registered an application in Azure AD. Then provided the application permission (Send mail as any…
0
votes
1 answer

Outlook API - Getting Error BadRequest when using filter with OrderBy

I am building a test application to fetch mail and attachments. If I use the request, which includes a filter of IsRead=false and HasAttachments=true, it…
Squirrel5853
  • 2,376
  • 1
  • 18
  • 34
0
votes
1 answer

Outlook REST API sync messages: no deltaLink in last response

I'm using Outlook REST API v2.0, and follow instructions from docs: https://msdn.microsoft.com/en-us/office/office365/api/mail-rest-operations#synchronize-messages Everything goes fine, I send Prefer: odata.track-change header with initial and…
gistart
  • 113
  • 7
0
votes
0 answers

Spring-Boot application with Office365

I am developing a Spring-Boot application that will create users getting their data from their profile in Office365 then will syncronizate data periodically. From Outlook Api request i can get some data as givenName, surname, displayName but not…
emilio
  • 1
  • 2
0
votes
1 answer

Regex expression not removing inline css from Html String

Background Currently have a console app that gets email from 0365 outlook account, I am using the outlook api 2.0 Problem I am accessing the email's body using the api, however the body comes in as a html string. I am using my go to regex…
EasyE
  • 560
  • 5
  • 26