Start and end time of a gsuite event item

I am getting the event list of a google account using gsuite and geteventlist activitiy. The result is stored in a list of gsuiteeventlist and I am iterating the list using for each. How do I find out the start and end time of an each event in the list.

@Sheela_Ippili

Welcome to the community

Inside the loop use currenItem.Start and currentItem.End

Both will give you the datetime of start and end respectively

Hope this helps

Cheers

Thank you for your reply.

I did try the above provided solution before but I am getting the below output. It shows the summary but not the start and end time


@Sheela_Ippili

One more step to it…which would give the datetime

use currenItem.Start.DateTime and currentItem.End.DateTime

Cheers

It worked! Thank you so much!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.