Skip to main content
Nintex Community Menu Bar
  • 10000+ Topics
  • 73,334 Replies
10000+ Topics
Get Recurring Events in O365

Hi Everyone,I need get the recurring events in a calendar. I can do it in the version on premise of Nintex, but I can't in O365. I try use this query in an "Office 365 Query List" control<View>    <Query>       <ViewFields>          <FieldRef Name="EventDate"/>          <FieldRef Name="RecurrenceData"/>    </ViewFields>    <Where>       <And>          <Eq>             <FieldRef Name="fRecurrence"/>             <Value Type="Text">1</Value> </Eq>             <DateRangesOverlap>                <FieldRef Name="EventDate"></FieldRef>                <FieldRef Name="EndDate"></FieldRef>                <FieldRef Name="RecurrenceID"></FieldRef>                <Value Type="DateTime">                <Today/>                </Value>         </DateRangesOverlap>      </And>    </Where> </Query> <RowLimit></RowLimit></View&gt