JQL how to find the date when assignee change to a specific user between to date

Brian Corriveau March 4, 2013

Hi,

I`m using Rest api of Jira. I'm able to found all Issue assign to a user . By using : assigned was "User" during ( startDate , enddate).

Now i want to know when the story was assign to the user using the rest api. I did not find a history rest call. So is it possible to do that with the rest api, does anybody know how to do this.

Ex: jql = history issue "Demo-01" return list of history

1 answer

0 votes
codelab expert
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.
March 4, 2013

No, there is no way to do this by using REST API.

My solution:

1. get all stories

2. fetch stories and get history entries

3. fetch all history entries and examine all user assignements

-> if the assignee match your desired user then put it in your list

Suggest an answer

Log in or Sign up to answer