I have a simple business requirement but have a hard time implementing it. As a user, I want to schedule recurring appointments in Outlook, then edit each instance separately in a SharePoint list and add extra information to it.
I have tried two different approaches:
- I created a flow which is triggered when a new event is created, then used the SharePoint Create item action to insert the values in my SharePoint list. The flow works but only inserts one record.
- I created a flow which is triggered when a new event is created, then I called the Get event(V3) outlook action to get all calendar items (I didn't use any ODATA filter for simplicity). Then within an Apply to each loop action, I used SharePoint Create item action to insert the values in my SharePoint list. The flow works but only inserts one record.
2nd approach
So both approaches return the first instance of the recurring event.
Do you know if this can be implemented, and could you please guide me how to do it?
Thanks,
Edwin