Hello :wave: Is the <scheduled_start_time flow run...
# ask-community
n
Hello 👋 Is the scheduled_start_time flow run attribute always in UTC or can it be in local time too depending on workspace settings or if its a scheduled/manual run?
c
Hi, yes the value is always in ISO8601 UTC when we send it over the wire. It's parsed into a
pendulum.DateTime
when you get a
FlowRun
object via our client, so you can convert it among timezones with
.in_timezone("America/New_York")
n
Perfect thank you for confirming 🙇