I am trying to fetch data by fetching response from https://domain_name.com/rest/api/2/search?jql=project=project_name&assignee=assignee_name. However the response will yield data of all assignee and not the one specified in the jql request.
fetching from https://domain_name.com/rest/api/2/search?jql=assignee=assignee_name however , will send the data of issue only assigned to the specified user.
Is there some other way to trigger the api request using combined queries?
Community moderators have prevented the ability to post new answers.
Hi @rpsg35 ! Welcome to the community!
You have got to use the AND clause in your query. So it should be project=ABC%20AND%20assignee=jsmith.
When you use an ampersand, in fact you are creating another parameter (not appending to the jql parameter).
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.