Snippets

Adaptavist Script Console Get Issue Workflogs

Created by Kristian Walker
/*
* This example script console script shows how you can return all the worklogs for a single issue. 
* "All right, title and interest in this code snippet shall remain the exclusive intellectual property of Adaptavist Group Ltd and its affiliates. Customers with a valid ScriptRunner
* license shall be granted a  non-exclusive, non-transferable, freely revocable right to use this code snippet only within their own instance of Atlassian products. This licensing notice cannot be removed or
* amended and must be included in any circumstances where the code snippet is shared by You or a third party." 
*/

// Specify Issue Key here
def issueKey = '<IssueKeyHere>'


// Get all the worklogs for the specified issue
def getWorklogsforIssue = get("/rest/api/3/issue/${issueKey}/worklog")
        .header('Content-Type', 'application/json')
        .asObject(Map)
        .body
        
// return all the worklogs and print them on screen        
return getWorklogsforIssue

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.