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
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