Is it possible to programmatically access the selected appointment (event) in outlook using Office Add In

1k views Asked by At

How to get the selected appointment data from outlook calendar Add Ins. I have added the Add Ins in Outlook calendar. I want to get the selected appointment ( event ) data. Because i need to display the selected event in Outlook Add Ins. Is this possible ? enter image description here( using javascript )

1

There are 1 answers

3
AudioBubble On

You can use Office.js APIs to get the details of current item or mailbox. For selected item's data you can use Office.context.mailbox.item APIs. Please check the API reference doc for complete API set.