is there an officially supported way to convert item ids from the Outlook REST
API into an MAPI
EntryID?
I am talking about the "Id" field returned for items in the json response of an http GET
on a mailbox endpoint like so:
https://outlook.office365.com/api/v2.0/me/messages
The Id field contains a base64 value. When I convert it to hex and compare it to the PR_ENTRY_ID
value of the same item, e.g. with MFCMAPI
, I can find the EntryID is contained in the hex version of the Id field.
Is there an official documentation how to convert between the id formats?
Or an API to call? Would prefer a local convert functions to avoid additional REST
roundtrips.
Thanks for any hints SvenC