I have a Flow that I believe I want to run daily with a Start Time (example: 2024-05-07T05:00:00:000Z). I then want to Select items from the previous day through the day the Flow runs (-4 hours). So...
StartDate = addDay(utcNow(),-1) "based on my exampleabove, this would be 2024-05-06T05:00:00:000Z"
EndDate = 2024-05-07T01:00:00:000Z
How do I write the EndDate in the addDay(utcNow()) format?