Get custom property set in Outlook Add-In via Microsoft Graph

后端 未结 2 1468
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-07 02:54

Let\'s say I have in my Outlook Add-In (using Office.js) following code running on a compose form of an appointment:

c         


        
2条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-07 03:31

    1. Per MS-OXCEXT, the interoperability doc on how add-ins store stuff in Outlook, custom properties are stored as a JSON dictionary in a MAPI extended property (gory details at that link). That means you should be able to access them via Graph extended properties, you would just have to parse the value yourself.
    2. Should be using extended properties and the "{type} {guid} Name {name}" format.
    3. I don't see why not.
    4. The answer isn't no, but I'll answer your follow up anyway :). Sure you can do this if you use the REST API from your add-in.

提交回复
热议问题