Snippets

Adaptavist Script Runner for Jira Cloud Script Console Get Change History For An Issue

Created by Kristian Walker
/*
 * "This script console script provides an example script for SR for Jira cloud which shows how to return the change history for a specified 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 the Issue Key below of the issue that you want to get the change history for
def issueKey = "<IssueKeyHere>"


// Get the Change History for the issue key specified above
def result = get("/rest/api/3/issue/${issueKey}/changelog")
        .header('Content-Type', 'application/json')
        .asObject(Map)
        .body

Comments (0)

HTTPS SSH

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