I want to get the Appointment Attendee change, Time change event in outlook calendar. https://github.com/OfficeDev/office-js-docs-pr/blob/master/docs/outlook/autolaunch.md I have referred this document. I'm able to get the OnNewMessageCompose, OnNewAppointmentOrganizer event. But unable to get the Preview events.
I have integrated my app in microsoft 365 admin center.
https://github.com/OfficeDev/PnP-OfficeAddins/tree/main/Samples/outlook-tag-external I have checked this sample project OnMessageRecipientsChanged is working fine. I tried for OnAppointmentAttendeesChanged event. Unable to get that.
Is this possible to get the OnAppointmentAttendeesChanged, OnAppointmentTimeChanged event ?
At present the MSDN page says that these preview events are supported on the web and on Windows.
To preview these events:
For Outlook on the web:
https://appsforoffice.microsoft.com/lib/beta/hosted/office.js
). The type definition file for TypeScript compilation and IntelliSense is found at the CDN and DefinitelyTyped. You can install these types withnpm install --save-dev @types/office-js-preview
.For Outlook on Windows:
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\16.0\Outlook\Options\WebExt\Developer
.Add an entry named
EnableBetaAPIsInJavaScript
and set the value to 1. The following image shows what the registry should look like.See Configure your Outlook add-in for event-based activation for more information.