I'm trying to link to specific conversations in the Outlook Web Application. So the idea is that the user clicks the link and the OWA opens with a specific email conversation (provided the user has access off course).
In this answer, a way to link to specific email messages using ItemID is described. The url structure is as follows:
https://your.domain/owa/#ItemID=<ItemID>
This already works, great. I would like to change it so that a conversation will be opened using ConversationID. I've randomly tried the following:
https://your.domain/owa/#ConvID=<ConversationID>
https://your.domain/owa/#ConversationID=<ConversationID>
But it doesn't work. I know something like this is possible in the older version of OWA you could use the following:
https://your.domain/owa/deeplink/readconv/<ConversationID>
Is there something similar for the most recent version of OWA? Is there any official documentation available besides obscure forums?