Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt
Returns the last date when the worklog was updated.


Parameters for the server version

ParameterTypeRequiredDescription
worklogNumberYesId of the selected worklog.

Parameters for the cloud version:

ParameterTypeRequiredDescription
issueStringYesThe issue key
worklogNumberYesId of the selected worklog.

Return type

Date

Example 1  (server only)

...

Code Block
for(number id in getWorklogIds("admin",key)){
 print(getWorklogUpdatedDate(id))
}

Prints the last date when the admin's worklogs of the current issue were updated.

Example 3 (cloud only)

Code Block
print(getWorklogUpdatedDate(key, 11201))

...