Feeds:
Posts
Comments

Archive for June, 2025

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.

FieldWhat to put in
MethodPATCH
URIhttps://graph.microsoft.com/v1.0/me/events/{EventId}
Content Typeapplication/json
BodyOnly include the properties you want to change, e.g.
{
"attendees": [
{
"emailAddress": {
"address": "alexw@contoso.com",
"name": "Alex Wilber"
},
"type": "required" // "optional" or "resource" also allowed
}
]
}

Read Full Post »