0

I've been tasked with coming up with a way to insert a link into all of our meeting invites in Office 365.

This link will be different based on the location of the meeting.

At a high level, how can I use something like an Azure function to run some code and act on every meeting object when they are created?

Dbloom
  • 1,302
  • 3
  • 18
  • 45

1 Answers1

1

Directly through Azure Function, I don't think it's possible unless you keep querying the office 365 api in order to get the meetings (and compare with previous state to get the new ones).

What you can do is combine Microsoft Flow and office 365, and from the flow, call your azure function.

https://powerusers.microsoft.com/t5/General-Power-Automate/Easiuest-way-to-get-calendar-id-for-the-Office-365-Calendar/td-p/6279

Thiago Custodio
  • 17,332
  • 6
  • 45
  • 90