Forums

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

find "who" changed assignee to specific user

Sylwester Sowa January 21, 2019

Hello,

Lets say that this JQL returns 20 issues:

assignee changed to "XXX" DURING ("2019/01/21","2019/01/21")

and i need to know WHO made transtion to user XXX.

is there a way to list it through JQL/ API?

 

 

3 answers

1 accepted

0 votes
Answer accepted
Sylwester Sowa January 23, 2019

JIRA Rest API, expand='changelog'

 

for example (python)

 

issue = jira.issue('XX-10116', expand='changelog')
changelog = issue.changelog


for history in changelog.histories:
    for item in history.items:
        if item.field == 'assignee':
            if item.toString  == "YYYYY":
                print (item.fromString)

1 vote
Taranjeet Singh
Community Champion
January 21, 2019

@Sylwester Sowa I don't think there is a way to list that user in JIRA via JQL, out-of-the-box.

You can instead check the "History" tab under Activity section on the issue view screen for each issue for which you want the information of the user who changed the assignee.

Sylwester Sowa January 21, 2019

hello,

thank you for answer. The problem is: I need to search this way 15-20 issues every day so it has to be more automate than searching it mannualy through issue view screen.

 

S.

0 votes
Yatish Madhav
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.
January 16, 2023

Hi this is something I would like to do as well ... I have tickets where assignee is someone, or it was changed to that someone BUT I want to know by who. ... I wonder if there was any workaround found in 3 years? Thanks in advance

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events