Our CRM creates activities that can have one or more participants. What we want to do is:
- First allow each user to authenticate our Office APP to read/write their Outlook Calendar.
- When an activity is created in our system we should make an event for each participant/user who has authenticated our APP.
In order to do so, I believe, we will store the OAuth access token in database so we can use it later to read/write outlook events on the user's behalf.
Microsoft's documentation is kind of vague on this feature. So the question is:
- Can an application create calendar events on Outlook365 via REST API for multiple office users if they each have authorized the app and we have the access tokens stored in database.
Almost all the examples and sample code I have seen involves only the currently logged in user.