Hi,
I am trying to obtain a daily email with all my events in calendar. I have errors in the action "Get calendar view of events"
Start Time: utcNow('F')
Anyone can help me?
Thanks in advance
Regards
Solved! Go to Solution.
Hi @sjimenezmeza ,
Can I know what you're planning for exactly?
Are you trying to fetch the events with Start and End dates from a particular timezone?
If yes, you can remove the filter and just change the start and end dates to match the timezone of your choosing
Start = convertTimeZone(utcNow(),'UTC','Romance Standard Time','F')
End = convertTimeZone(addDays(utcNow(),1),'UTC','Romance Standard Time','F')
Or do you want to fetch the events with Start and End dates converted to a specific timezone?
If you want to convert the start, end dateTime information to the timezone of your choosing before consuming it, then you can simply use a select statement and format the output however you like.
Start = convertTimeZone(item()?['start'],'UTC','Romance Standard Time','F')
End = convertTimeZone(item()?['start'],'UTC','Romance Standard Time','F')
So it's possible to either get items with start/end times from a particular timezone or get the items and then convert them to timezone of your choice to or you can even do both. (y)
Hope you find this helpful! 🙂
Kind Regards,
Shaik Sha
________________________________________________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.
Hi @sjimenezmeza ,
Can I know what you're planning for exactly?
Are you trying to fetch the events with Start and End dates from a particular timezone?
If yes, you can remove the filter and just change the start and end dates to match the timezone of your choosing
Start = convertTimeZone(utcNow(),'UTC','Romance Standard Time','F')
End = convertTimeZone(addDays(utcNow(),1),'UTC','Romance Standard Time','F')
Or do you want to fetch the events with Start and End dates converted to a specific timezone?
If you want to convert the start, end dateTime information to the timezone of your choosing before consuming it, then you can simply use a select statement and format the output however you like.
Start = convertTimeZone(item()?['start'],'UTC','Romance Standard Time','F')
End = convertTimeZone(item()?['start'],'UTC','Romance Standard Time','F')
So it's possible to either get items with start/end times from a particular timezone or get the items and then convert them to timezone of your choice to or you can even do both. (y)
Hope you find this helpful! 🙂
Kind Regards,
Shaik Sha
________________________________________________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.
I
I am trying to obtain a summary of me meetings all days and with this parameters works:
Start = convertTimeZone(item()?['start'],'UTC','Romance Standard Time','F') End = convertTimeZone(item()?['start'],'UTC','Romance Standard Time','F')
Thanks!
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
At the monthly call, connect with other leaders and find out how community makes your experience even better.
User | Count |
---|---|
21 | |
21 | |
9 | |
8 | |
7 |
User | Count |
---|---|
33 | |
31 | |
24 | |
21 | |
11 |