I use Exchange Webservices Managed API to connect with Office365.
Per
Contact I retrieve the contact.ItemId.UniqueId and contact.StoreEntryId. However contact.StoreEntryId = null?
Is this supported in Office365?
My goal is to pop-up/display the contact card in Outlook2013. I try to achieve this via COM/OLE OOM (Outlook Object Model) by calling the GetItemFromId(EntryId, StoreEntryId) function to find the contactitem and then call the ContactItem.Display()
method. Thus, the GetItemFromId() function also requires the StoreEntryId.
Perhaps any of you has experience with Office 365 using outlook2013 (Outlook object model) and can tell me if this is the right approach?
- Is the Item.Id.UniqueId an unique Contact identifier in Office365, which I can refer to when synchronized with Outlook2013?
- Is EWS Contact.Id.UniqueIdthe same as OOM EntryId (MAPI)?
- Is there an other or better way to achieve my goal?