Convert timestamp into date time

Good evening, in my workflow i do an API Call to retrieve the creation time of a Ticket, the result of the API call is this: 1557307135000. If i’ll put this string into a website that convert the timestamp into a datetime the result of the website is 8 of may 2019.

How can i do the same thing using only the UiPath methods?

grafik

DateTimeOffset.FromUnixTimeMilliseconds(1557307135000).DateTime

1 Like

Thanks! It worked

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