Is there a way to to see what dates/times tickets changed Status via the JIRA API? -


i trying run queries against jira api , results in can see dates , times each issue went through status change.

e.g.: run query grab issues assignee , see, along rest of information, timestamps when each issue changed "open" "resolved".

is possible?

edit: have tried expanding changelog, while tells me status changes ticket went through (e.g., particular ticket transitioned "open" "resolved" , "resolved" "closed"), doesn't tell me when these transitions occurred.

turns out each of transition objects showing status changes have "created" field contains time , date transition occurred, feel bit of misnomer, there is. example object inside "histories" array in expanded changelog object:

{ "author" : { "active" : true,   "avatarurls" : { "16x16" : "https://company.jira.com/secure/useravatar?size=xsmall&avatarid=10072",       "24x24" : "https://company.jira.com/secure/useravatar?size=small&avatarid=10072",       "32x32" : "https://company.jira.com/secure/useravatar?size=medium&avatarid=10072",       "48x48" : "https://company.jira.com/secure/useravatar?avatarid=10072"     },   "displayname" : "first last",   "emailaddress" : "first.last@company.com",   "name" : "first.last",   "self" : "https://company.jira.com/rest/api/2/user?username=first.last" }, "created" : "2013-04-17t16:21:13.540-0400", "id" : "24451", "items" : [ { "field" : "status",     "fieldtype" : "jira",     "from" : "5",     "fromstring" : "resolved",     "to" : "6",     "tostring" : "closed"   },   { "field" : "assignee",     "fieldtype" : "jira",     "from" : "old.assignee",     "fromstring" : "old assignee",     "to" : "first.last",     "tostring" : "first last"   } ] } 

Comments

Popular posts from this blog

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -