Unable to get data through REST call for a JQL for custom field.

Utpal Sarkar September 20, 2017

Looking for this query 

Where I have one custom field is in query param ( customfeild_17941 in 'username1' ) and i need to see data for customfield_11783

 

Here is the query ( i tried both none of them working )

https://myserver.com/jira/rest/api/latest/search?jql=Type=Bug%20AND%20cf[17941]%20IN%20(username1,username2)%20&maxResults=500&fields=summary,duedate,issuetype,priority,cf[11783],status

 

https://myserver.com/jira/rest/api/latest/search?jql=Type=Bug%20AND%20customfield_17941%20IN%20(username1,username2)%20&maxResults=500&fields=summary,duedate,issuetype,priority,customfield_11783,status

 

when i am putting in browser, both are working , but i am making golang call , it is not working . It is not issue with golang as other simple JQL without parameter , it is working "https://myserver.com/jira/rest/api/latest/search?jql"

 

Can you please let me know what could be the issue ? 

 

 

 

 

 

 

 

1 answer

0 votes
Warren
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 21, 2017

Hi Utpal

Have you tried just the JQL part directly in Jira's issue filter? Check that it works there, because "text" custom fields can't be queried for content.

If I set up a text custom field, I can use cf is EMPTY or cf is not EMPTY, but I get an error if I try cf = "fred" or cf != "fred" or cf in ("fred", "notfred").

You are able to query date fields and numeric (I think)

Utpal Sarkar September 21, 2017

Thanks for reply !

I have tried that , it works , while I apply to JIRA

Type=Bug  AND cf[11783] IS NOT EMPTY AND "Dev Lead" = utpal

But when i am doing through HTTP POST It's not taking the JQL part , I can see only fields in the request are coming but filtering is not working 

var rawJsondata = `{\"jql\":\"(Type=\"Bug\" and cf[11783] IS NOT EMPTY  and \"Dev Lead\" IN (utpal"))\" ,\"startAt\":0,\"maxResults\":100,\"fields\":[\"summary\",\"duedate\",\"issuetype\",\"priority\",\"cf[11783]\",\"status\"]}`

data := new(bytes.Buffer)

json.NewEncoder(data).Encode(rawJsondata)

resp, err = client.Post(url,"application/json; charset=UTF-8", data)

Suggest an answer

Log in or Sign up to answer