Hi Abhay, To convert the current UTC time in Logic Apps to a Unix timestamp, you can use the following expression:
"@div(sub(ticks(utcNow()), ticks('1970-01-01T00:00:00Z')), 10000)"
-
utcNow()
should retrieve the current UTC time. -
ticks('1970-01-01T00:00:00Z')
gives the Unix epoch start time. -
sub(ticks(utcNow()), ticks('1970-01-01T00:00:00Z'))
calculates the difference between the current time and the epoch start time in ticks. -
div(..., 10000)
divides the tick difference by 10,000 to convert it to milliseconds (Unix timestamp format).
The summarize this expression will give you the Unix timestamp in milliseconds.
I hope this helps?