Reputation: 1
I am integrating Office 365 with my application. When I create an event on Office 365 Calendar, it sends emails to all the attendees. How to disable this? I don't want to send the mails when an event is created.
Upvotes: 0
Views: 151
Reputation: 2228
On MS Graph there is eventCreationOptions
on beta API versions. Look into this.
<ComplexType Name="eventCreationOptions">
<Property Name="saveToGroupCalendarOnly" Type="Edm.Boolean"/>
</ComplexType>
Upvotes: 0
Reputation: 226
It looks like there is still no solution to this. You can follow this thread for more information: https://office365.uservoice.com/forums/286611-office-365-groups/suggestions/9532698-allow-calendar-appointments-to-be-created-without. Check the comments!
Upvotes: 0