2

I am using the rest API documented here https://msdn.microsoft.com/office/office365/APi/mail-rest-operations and https://visualstudiogallery.msdn.microsoft.com/a15b85e6-69a7-4fdf-adda-a38066bb5155 to analyze e-mails in an application. When I "View message details" in Outlook I see the header fields for:

Message-ID: <1421862991001.54993@domain.com> 
References: <1421861073749.70076@domain.com> 
In-Reply-To: <1421861073749.70076@domain.com> 

Is there a way to access these fields through the rest api? The api returns a ConversationId and Id, but those have different values and nothing that can give the context of a message like In-Reply-To does. I realize since these fields aren't documented my answer will be no, but perhaps there is some other way?

I realize this isn't a great example of a programming related question, but I've read this is the best place to interact with the developers at MS responsible for these APIs.

Kleinux
  • 1,511
  • 10
  • 22

2 Answers2

4

You're right, there isn't a way currently. Accessing the headers (or even the full MIME) would definitely be useful, I will make sure it's passed along.

Jason Johnston
  • 17,194
  • 2
  • 20
  • 34
  • Thanks for letting me know. If I could gain access to the headers that would be the bees knees! – Kleinux Jan 22 '15 at 15:29
2

Chiming in here since it's been a few months since this question was answered.

Accessing the full header information via the REST api would be useful for a variety of reasons, including detecting auto-replies. It'd be great to see this feature happen!

Christina
  • 56
  • 4