Questions tagged [outlook-api]

120 questions
8
votes
1 answer

Outlook Mail API returns spellcheck class names as part of html response when using List Messages

I am currently using the outlook mail api to retreive messages from a specific shared folder (List Messages Request), when i get a response from the query i want to read the body content in this case my header prefers html. What i'm trying to…
Owen Pattison
  • 314
  • 2
  • 6
6
votes
1 answer

Set TimeOut to a higher value in Microsoft.Graph SDK

I get timeout error frequently with the below code using the Microsoft.Graph package, await graphServiceClient.Users[UserId].Contacts.Request().AddAsync(contact); As there are no option (that I could find) for adding multiple contacts at a time, I…
rkeeth
  • 109
  • 1
  • 9
4
votes
0 answers

O365 API, python sendmail:: Throttle Error: Application is over its IncomingBytes limit

I'm receiving this throttling error and there is no mention anywhere regarding why this error occurs. Error Message: Application is over its IncomingBytes limit. Can someone please help me.
4
votes
3 answers

Outlook API: Receiving 'ErrorIrresolvableConflict' when trying to send Draft

When trying to send a draft, I receive an error: "ErrorIrresolvableConflict","message":"The send or update operation could not be performed because the change key passed in the request does not match the current change key for the item., Item could…
3
votes
0 answers

Runtime Error when sending a search request to outlook for a keyword that does not exist in the mailbox

When searching for a keyword ("Test email"), using Outlook API, and the keyword exist in my mailbox, I retrived a result within a second. However, if the keyword ("blablabla") does not exist in the mailbox I do not get a reply. Almost after 2…
Hussain
  • 436
  • 3
  • 8
3
votes
0 answers

How to get inbox mail from office 365 in php?

I have been attempting to get email's from office 365 using PHP. Here i need to get email's without user login.So i'm trying to get access token without user login. This is the end point where i'm getting access…
dhamo dharan
  • 712
  • 1
  • 10
  • 25
3
votes
3 answers

Microsoft Graph Outlook application permissions for a particular mailbox only

Microsoft Graph uses application permissions for background services. For Outlook APIs, application permission Mail.ReadWrite grants access to all mailboxes. Is there a way to restrict access to a particular…
Rehan
  • 31
  • 2
3
votes
1 answer

Delta sync of calendarView doesn't include deleted occurrences of a recurring event

I've got a solution working that is pulling in a calendarView of events, and then using delta sync to track changes and keep the list up to date. However, I'm noticing some strange behavior with recurring events. Specifically, if I delete one…
RealCasually
  • 3,593
  • 3
  • 27
  • 34
3
votes
0 answers

outlook mail REST API

I'm trying to get access to my outlook inbox mail. This the code: Logger logger = LoggerFactory.getLogger(MainActivity.class); private static final String TAG = "MainActivity"; private static final String outlookBaseUrl =…
3
votes
0 answers

Office365 / Outlook: Get user's email addresses or aliases

Essentially, I'd like to know what email addresses I have permissions to send emails from. Is it possible to get this information via the REST API? E.g., my primary mailbox is fname.lname@live.com, but I've also added the alias…
2
votes
0 answers

ResourceNotFound: Resource could not be discovered - Microsoft Graph

I'm developing a service to synchronize Dolibarr calendar with Outlook calendar. I'm first trying to create an event in the Outlook mailbox. I have looked on different forums and tried many different things, but I still have this issue: Code:…
YaatSuka
  • 47
  • 6
2
votes
1 answer

POST Ajax call to Outlook API - Access is denied

I'm having a hard time sending a POST request to the Outlook API. I'm working on my local machine and defined the redirectUrl to my localhost:port My GET requests works: var apiUrl =…
Itay Gal
  • 10,706
  • 6
  • 36
  • 75
2
votes
1 answer

Office 365 Tasks API - access api using fixed user credentials in web.config C#

I'm trying to access the outlook 365 task api using a pre-defined microsoft account username and password which I will put in the config file. Currently my app is redirecting to the microsoft login page using …
2
votes
0 answers

Implementing AppAuth for Outlook API

The Outlook API tutorial is using this p2OAuth2 library for OAuth2 authentication purpose and further API calls. But can we change the authentication library to AppAuth-iOS? I have been using this for Google account integration and found it quiet…
hamedazhar
  • 990
  • 10
  • 26
2
votes
2 answers

Microsoft Graph API - Send Emails always return response code 403 with error text "Access is denied. Check credentials and try again."

We have implemented sending emails via graph api. In microsoft app https://apps.dev.microsoft.com we have created application and for this application set permission 'Mail.Send'. For authentication we are using way "Get access without a user". We…
vzhutenko
  • 23
  • 3
1
2 3 4 5 6 7 8