JIRA REST API Query to return only status name (e.g.; Closed)

Matt von Radesky October 20, 2014

I’m using JIRA v6.1.2.

The following API query returns status description, status id, and status name for a for a given issueIdOrKey:

/rest/api/2/issue/{issueIdOrKey}?fields=status

 How do I change the API query to only return the status name (e.g.; Closed) for a given issueIdOrKey?

2 answers

0 votes
B March 21, 2017

I tried below query in unix and it worked,

curl -u username:password -X GET -H "Content-Type: application/json" https://jiraurl/rest/api/2/issue/ticketnumber?fields=status 2>&1 | grep -o -P '(?<="name":").*(?=","id":")'

change --> username , password, jiraurl and ticketnumber

 

 

0 votes
Norman Abramovitz
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 20, 2014

I do not believe there is a way.  It would be through the expand parameter if it was possible.

Suggest an answer

Log in or Sign up to answer