An API that connects multiple Microsoft services, enabling data access and automation across platforms
Email Conversations
I am displaying a list of users email messages via Microsoft Graph API v1. I am trying to implement conversation mode for this list. Messages contain a conversationId and conversationIndex. However every message contains the conversationId regardless if it is only one message in the "conversation". So conversationId alone is not enough to determine if a message is part of a conversation. The conversationIndex is not able to be interpreted as far as I can tell.
I selected interetMessageHeaders and identify values such as "In-Reply-To" to determine that the message was a reply. However I cannot find a way to determine if I have responded to a message.
All other ways I can think of require lots of API calls and looping to compare conversationId's. This is not ideal.
Is there a simple way to determine if a message exists as part of a conversation? If not is there a way to determine I have responded to a message in my mailbox?