What is the easiest way to extract sprint start and end dates from the JIRA db?

后端 未结 6 1436
别那么骄傲
别那么骄傲 2020-12-19 16:33

I\'m trying to extract the start and end days of my sprints from the Jira database. This would seem like a simple task, but it really (as far as I have found out at least) i

6条回答
  •  死守一世寂寞
    2020-12-19 17:19

    There seems to be no way of getting end and start date of sprint via Jira SOAP/REST API.

    You can extract the start and end dates of your sprints using: com.pyxis.greenhopper.jira.configurations.ProjectConfiguration#getVersionStartDate com.pyxis.greenhopper.jira.configurations.ProjectConfiguration#getVersionEndDate

    To use this class you can write a Jira plugin - Developing with the Atlassian Plugin SDK

    Another option is to write GreenHopper module - GreenHopper Developer Documentation

提交回复
热议问题