Snippets

Adaptavist ScriptRunner Cloud: Get Status Name in Behaviour on Issue View

Created by Kristian Walker last modified
/*
 * This script provides an example of how in Behaviours to get the current issue when on the issue view and then extract the status name from this.
 * 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." 
*/ 

// Get the context
const context = await getContext()

// Get the current issue key
const issueKey = context.extension.issue.key;

// Get the current issue object 
const issue = await makeRequest("/rest/api/2/issue/" + issueKey);

// Extract the status name
const statusName = issue.body.fields.status.name;

// Log out to the Satus name  
console.log("Status Name: ", statusName);

Comments (0)

HTTPS SSH

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