Hi!
I'm looking for a solution to find future sprint from certain board.
I'm able to find all sprints from board (closed/active/future) by:
// Get all sprints
def sprints = get("/rest/agile/1.0/board/3491/sprint")
.asObject(Map)
.body
return sprints
but I don't know how to get future sprint only.
Can you help me?
Please try it:
/rest/agile/1.0/board/3491/sprint?state=future
And REST API doc for more detail:
Thanks,
YY哥
Thanks! That was that what I need!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome. I got this knowledge when I deveoped Sprint Reviewer app.
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.