2

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 threads(like that of a conversation thread between two email ids). Also, there is no field in the object that can specify to which thread a particular email belongs so that I can group them in my app.

Is there any way I can achieve the same.

Enab
  • 41
  • 5
  • You may want to get started from this - https://learn.microsoft.com/en-us/graph/api/resources/conversationthread?view=graph-rest-1.0 – Dev Sep 22 '20 at 18:33

1 Answers1

1

Honestly, I think there is some severe lack of documentation on this everyday use case.

The solution it seems is to filter your messages by the conversationId.

See this answer: https://stackoverflow.com/a/63570384/2591194.

Moritz Schmitz v. Hülst
  • 3,229
  • 4
  • 36
  • 63