How can i find out the list of story/task/issues assigned to the set of user for a specific sprint.

Sowmiya srinivasan July 31, 2020

Any Rest API like below one?

http://localhost:8080/rest/api/2/search/?jql=assignee=username AND project = NARS10 AND sprintId = 1

2 answers

1 accepted

Suggest an answer

Log in or Sign up to answer
1 vote
Answer accepted
Dave Liao
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 31, 2020

@Sowmiya srinivasan - yes. A few notes:

  • To find issues for multiple users, use Assignee IN (username1, username2).
  • You might need to replace sprintId with just Sprint.
  • Sprint IDs are global, so you can exclude "project" from the JQL query.

Try something like http://localhost:8080/rest/api/2/search/?jql=assignee IN (username, username2) AND sprint = 1

Hope this helps.

Sowmiya srinivasan August 1, 2020

Yes it helps a lot. Thanks.

Is there any JQL query to get all the sprint id?

0 votes
Dave Liao
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 1, 2020
TAGS
AUG Leaders

Atlassian Community Events