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?
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
I do not believe there is a way. It would be through the expand parameter if it was possible.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.