we are trying to find out the issues which were added after the sprint start date ... how to access Rest API's to get that information ...i dont dont want to use Script runner or any other Add On's to get this information
You would need to use several rest calls.
1. You need to define when the required sprint started. You can do it with
GET /rest/agile/1.0/sprint/{sprintId}
2. You should find all issues in the sprint
GET /rest/agile/1.0/sprint/{sprintId}/issue
3. You should iterate for all issues in the number 2 and compare the date when the field sprint was changed to the sprint startdate. You can get info about when the sprint was changed by this Rest call:
GET /rest/api/2/issue/{issue key}?expand=changelog
Thanks a Lot @ Alexey Matveev for the Prompt Reply , let me have a try ......
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.