I have an issue in Jira. I want to search based on the 'Sample' word on Summary or Description, but also filtering by Project or Assignee. I tried with these REST calls:
.../rest/api/2/search?jql=summary~"Sample"&assignee=user123&fields=issues,summary,description&maxResults=2000&runQuery=true
.../rest/api/2/search?jql=summary~"Sample"&project=cdv&fields=issues,summary,description&maxResults=2000&runQuery=true
Those calls only filter by the Keyword, ignoring all subsequent filters, what can I do to fix this? This happens also using description instead of summary.
Sorry, I already resolved it with this:
rest/api/2/search?jql=summary~"Sample"%20AND%20project=CDV&fields=issues,summary,description&maxResults=2000
Using %20AND%20 instead of &
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.