I live in the 'Atlantic Standard Time' time zone. I'm trying to write a flow that will send me an email daily at 4 am (Atlantic Standard Time) with all my day's calendar entries. I'm well aware that "Get calendar view of events (V3)" returns everything in UTC, which is fine - I've already taken care of that part. The issue is that it doesn't matter what I do, I can't get the start / end times for "Get calendar view of events (V3)" to return midnight 'Atlantic Standard Time' - they always return midnight UTC. Reading seems to indicate that I should be using:
- startOfDay(convertFromUtc(utcNow(), 'Atlantic Standard Time'))

- startOfDay(addDays(convertFromUtc(utcNow(), 'Atlantic Standard Time'), 1))

Except as you can see below, when I run the Test Flow, the startDateTimeUtc and endDateTimeUtc output still ends up being midnight UTC time, which means any calendar entry after 8 pm is excluded from the query.

I've been trying to figure this out for 2 days now and I'm starting to get a grumpy with it.
Does anyone know the proper solution for this?
Thanks
dcc