We have a sprint that has a very generic name and the tickets associated with it span multiple projects and boards. Multiple teams appear to be claiming ownership of it, but I have not been able to find out who created the sprint. The ticket history will tell me who added the tickets to the sprint, but now who created it. Any ideas?
Hi CJ,
I'm afraid that information is not stored in JIRA. I took the liberty of creating an improvement regarding this request at: https://jira.atlassian.com/browse/GHS-11871
Please add yourself as a watcher to be notified of future updates.
Cheers,
Clarissa.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Super Clarissa :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Maybe you can find out where the sprint was created.
You just need to have the sprint ID and then use rest api:
/rest/agile/1.0/sprint/{sprintID}
This rest api will provide you the originBoardId of the sprint
After that, you can search for the board using rest api to get the name of the Board.
rest/agile/1.0/board/{boardID}
After that, you can search who is the owner(s) of that Agile board and for sure these people should be the ones that created the sprint :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
I cannot see the owner of the agile board nor the creator of the sprint.
The whole information i can get from /rest/agile/1.0/sprint/{sprintID} :
and the whole information i can get from rest/agile/1.0/board/{boardID} :
P.D (I am using jira cloud )
@Jose Luis Casarrubias can you specify please how you was able to get the sprint creator or the owner of an agile board ?
Thank you ,
Abdel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not sure but I assume that the first entry in the "userhistoryitem" for the sprint's "rapid_view" represents the creator?
/* Find Sprint creator */
DECLARE @SPRINT BIGINT
--
SELECT @SPRINT = 5416
--
SELECT TOP 1 UH.ID, SP.NAME sprintname, USERNAME creator
FROM [My_Jira].[dbo].[userhistoryitem] UH
INNER JOIN [My_Jira].[dbo].[AO_60DB71_SPRINT] SP WITH(NOLOCK) ON UH.ENTITYID = CAST(SP.RAPID_VIEW_ID AS NVARCHAR)
WHERE SP.ID = @SPRINT;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No. This shows who last viewed it or had started the sprint or accessed the board (neither the sprint).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The answer from similar question (Jira Agile non-active sprint creator and created date) can give you some information.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Florjan! My results are a little troubling. The name of the sprint has changed, so I used the entitytype & entityid instead. This returned 38 results, and the earliest dated result was for a user who has no permissions to create the sprint.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.