my fixversion is like this "march release" i want to query like rest/api/2/search?jql=project=PROJNAME&fixVersion=march release&maxResults=10
Hello,
Your JQL query should look like this:
search?jql=project%3DProjectKey%20and%20fixversions%3D%22march release%22&maxResults=10
But when i request like it is showing an error
{"errorMessages":["Error in the JQL Query: The quoted string has not been completed. (line 1, character 31)"],"errors":{}}
api/rest/2/search?jql=project = PROJNAME AND fixVersion = "MARCH RELEASE" AND assignee (NAME)'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How do you execute this REST call? From which program?
Moreover with assignee it should be
assignee = name
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
with python can u please write a full url and show me because i tried with assignee = name
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
import requests
r = requests.get('https://****/rest/api/2/search?jql=project = PROJNAME AND assignee = NAME AND fixVersion = "MARCH"')
print(r.text)
this is the python code same error
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It looks correct to me. Try to remove the part with double quotes and see if it works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
getting this error {"errorMessages":["Error in JQL Query: Expecting either a value, list or function before the end of the query."],"errors":{}}
when i remove double code
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.