We defined fields as required/mandatory for a certain transitions (for example, "Fix version" in required when moving a ticket to "Ready For QA").
So now when trying to make the transition w/o this field then the action failed. The field should be filled before the action.
Is there an option for a popup to open when doing so? (for example, when transitioning to "Ready For QA" the ticket will open in a new window allowing to fill "Fix version").
Remember seeing that option before but don't know how to custom it.
hi @[deleted],
The above jql doesn't work because your url is incorrect. It should be like this
https://company.net/rest/api/2/search?jql=status in (open)
But this won't solve your problem because it will grab all the issues that are open.
Instead since a board is built on a query & the filters on boards are all saved filters - you should simply be able to find from the list of all filters available. After finding the filter used by the board you wanted, copy it and append status in (open) to the filter.
Use this modified filter by appending it to the above jql url below
https://company.net/rest/api/2/search?jql=
If you don't know where to locate the filter used by the board use the documentation link below
https://www.atlassian.com/agile/tutorials/creating-your-agile-board
Hope this helps!
Thank you for the information. With the help of this informations, i was able to understand how it works with the boards and projects and so on. There were already some labels and queries in place which i could use to get the data i wanted. Nice. Thanks :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
Your rest call should be like this:
https://company.net/rest/agile/latest/board/BoardNumber/issue?jql=status%20in%20(open)
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.