GET request to: https://{{my-domain}}.atlassian.net/rest/agile/1.0/board/{{board_id}}/sprint?state=active
It returns a sprint with id 232. Now i wanna get all issues, inside sprint 232 by a specific user, but i´m not sure how to proceed. Can someone help me?
You can run JQL over rest - "sprint = 232 and reporter = user" should fetch it (I'm not sure what you meant by "by a user" so I took a guess at it being the reporter)
The user i´m looking is the assignee name, usually name.lastname here.
I´m using REST 'cause it is part of a small integration.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, flip my "reporter" over to "assignee". REST is fine, you can run JQL over it and get a block of json with all the issue data in it
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried what you´ve said and it worked like a charm. Thank you :)
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.