papercowboy
papercowboy

Reputation: 3459

Office 365 REST API - prevent global attendee updates on new calendar invite

I'm using the Office 365 Calendar REST API (specifically the "Update Events" calls) to add and remove attendees. Would like to add invitees without triggering an update to all attendees.

The docs clearly state:

"If the user is the organizer, the server sends meeting updates to all attendees."

Great. But how do you disable this behaviour?

The isOrganizer flag on EventResource does NOT seem to do anything.

The EWS API has a SendInvitationsMode flag which is basically the behaviour I'm looking for: https://stackoverflow.com/a/21708579

Is it possible to disable sending out new invites to every attendee using the REST API?

Upvotes: 2

Views: 301

Answers (1)

Jason Johnston
Jason Johnston

Reputation: 17692

Unfortunately you cannot disable it. This is on our roadmap to add in the future though.

Upvotes: 4

Related Questions