Converting timestamp to real date Follow
How to convert `"timestamp":1619601319518,` to a real date/time.
,"timestamp":1619601319518, is the value returned from the YouTrack api/issues/BE21-142/activities call.
Please sign in to leave a comment.
Hi!
I'm Sergey from the YouTrack team.
This is Unix time (Epoch time). You can convert it using any online tool like this one. If you process the response in code, then you can look the solution up for your language as there should definitely be one. For example, this is how it can be done in vanilla Javascript.