0

enter image description hereI have a Logic App that I need to get events from a Calendar in Outlook. I am specify the dates I am interested in like this.

Start/DateTime ge '2023-07-01' and End/DateTime le '2023-07-31'

Problem is that recurring events that where started outside of this time period aren't returned even though an instance of the event occurs during the defined time period.

Anyone know how to get these recurring events included?

Jon Farmer
  • 326
  • 1
  • 6
  • 16

1 Answers1

0

Logic Apps Outlook Get Events - Issue With Recurring Events

Get Events(v4) connector, gives output those events whose starting date is in between the provided start date and end date.

For Example: I have created a meeting in teams starting from 26th July 2023 and ending on 29th July 2023.
enter image description here
enter image description here

Note:- I have used UTC time zone. Please use as per your requirement time zone
Input: -
Start date 25th July 2023 end date 30th July 2023
enter image description here
Output:-
it gives output of only single instance of the recurring event.
enter image description here

To get all the recurrence event in specified date Please use “Get calendar views of event(V3)
Input:-

enter image description here

Output:- It will give output of all the recurrence in the specified date
enter image description here

enter image description here

Sourav
  • 814
  • 1
  • 9