This function returns the time part of any given timestamp.


 timePart(timestamp, timeZone) #Output: Number 



Parser expressionDescription


%{timePart({issue.created}, RUN_AS_LOCAL)}



This example returns the time part of the issue creation date timestamp in milliseconds.

If the creation date was March 25th, 2020 23:15 the output would be 23:15 (in milliseconds).




Parameters used in this function

ParameterInput (data type)Description
timestamp

The parameter must be a valid timestamp. Usually this value is retrieved from a field (e.g. due date, created date).
timeZone

The time zone used for the calculation. 



This function returns a


If you need the date part instead you might want to have a look at the function datePart().



Use cases and examples



Short description

Returns the time part of any given date.

Output