Re: Post Recurring Events on Today's Date from a SharePoint Calendar in Teams
Hi @bblande,
Unfortunately, the Get Items action does not return recurring event data for Events lists.
A workaround would be to use a HTTP request instead, you can use the OverrideViewXml property to expand on the recurrence, this should also return the recurrence items.
Below is an example how to retrieve recurrence items as well.
This example does not include the filtering. You would have to add a CAML query for that, or just use a Filter Array or URI parameters for that.
URI
_api/web/lists/getByTitle('Events')/RenderListDataAsStream?View=@{variables('ViewID')}
Body
{"parameters": {
"RenderOptions": 2,
"OverrideViewXml": "<QueryOptions><ExpandRecurrence>TRUE</ExpandRecurrence></QueryOptions>",
"AddRequiredFields":true
}
}
