How to get number of milliseconds since 1970

1
How can you get the number of milliseconds since 1970 (java date long) in a Microflow?
asked
1 answers
4

One option is:

millisecondsBetween(parseDateTime('1970-01-01', 'yyyy-MM-dd'), [%CurrentDateTime%])

answered