Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to get name of the User who accepted the Story through JIRA API ?

Thrivikrama Madiraju
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 19, 2019

I am trying to get User Story details through JIRA api.
One information we couldn't find is how to get the Name of the user who accepted the Story ? 

1 answer

1 accepted

0 votes
Answer accepted
brbojorque
Community Champion
December 19, 2019

Best way to figure out who did what in the ticket is to check the history.

I'm not sure if you can use Groovy, but this is how I would do it using ScriptRunner.

if(event?.getChangeLog()?.getRelated('ChildChangeItem').find {it.status == "Accepted"}){
//Get the username
}

Suggest an answer

Log in or Sign up to answer