CodingFanSteve
CodingFanSteve

Reputation: 783

Is there a way to display custom message for addin actions on top of the calendar appointment?

When I click on my outlook addin, it will display a grey message on top of the calendar appointment saying "MyAdd is working on your XXX request" (like the "outlook test plugin is working on your Insert Default Gist request" message in the screenshot below). I believe this is done by Office.js underneath.

Now, I want to display certain error messages of my addin that way too. But I do not see any outlook APIs on the Office DevCenter likely provides such functionality. Want to know if this is doable? Thanks!

enter image description here

Upvotes: 0

Views: 85

Answers (1)

Slava Ivanov
Slava Ivanov

Reputation: 6947

This can be done by using NotificationMessages object. This object minimum mailbox requirement version set to 1.3 level API. Link to the documentation you have provided is leading to 1.1 level API.

Upvotes: 1

Related Questions