Hi -
I have a script that reports linkage errors to our users. I would like to generate a URL that will bring up a page that shows all of the issues that contained an error for the user. So far I have been able to create something like the following:
However, this just brings up the jql search page with the query entered into the text box but it does not actually initiate the search. The user has to push the "Search" button to get it to work. Worse, if a previous search was active it will bring up the search results of the previous search fooling the user into thinking the search actually worked.
How can I construct a URL that will both entered the JQL search string and actually perform the search?
Thanks!
Brent
Awesome. Thanks! Are these parameters documented anywhere? I googled around for it before I posted the question but could not find anything...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Don't think so. You will see it when you run a search from History.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
IssueNavigator.jspa was deprecated at some point. If anyone finds this post in the future, use /issues/?jql= instead.
For example
https://yourJIRAurl/issues/?jql=project%20%3D%20"Service%20Desk%20Maintenance"%20
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
This is how i did
https://my_jira_url/rest/api/2/search?jql=assignee=my.user%20and%20status%20=%2010000
'%20' is used to space and the number 10000 is the status "in dev" in my case.
Sometimes the value that is displayed in the field isn't the logical value of the field, in this cases i just use some api to get the issue data and find the field that i want to know the correct value.
Like this:
https://my_jira_url/rest/api/2/issue/''ISSUE_ID'
Json property that cotains the status name and the id :
"name":"Em Desenvolvimento",
"id":"10000",
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.