In this case, we have a workflow that sends meeting invites to people who join by filling a form. So when the form is submitted, the flow adds the new user to the invite.
The issue is that everyone else is getting an update on the event which can be annoying when we have 100s of the people signing up.
What we need to do is to add the new person to the invite and send it to them without sending an update to the existing users. The Update Event (V4) will send the update the everyone.
The Solution is to use the action: Send an HTTP request (Office 365 Outlook). This action is available in the Standard license, no need for premium license to use it.
| Field | What to put in |
|---|---|
| Method | PATCH |
| URI | https://graph.microsoft.com/v1.0/me/events/{EventId} |
| Content Type | application/json |
| Body | Only include the properties you want to change, e.g.{ |
Leave a comment