The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results forĀ 
Search instead forĀ 
Did you mean:Ā 

Getting List of issues through JIRA-REST Client in Java

VishnuP
November 6, 2016

Hi All,

I and quite new to JIRA and am working on extracting issue information from JIRA through REST Client.

Dev Environment

I am using eclipse IDE and a maven project.

I was able to retrieve issue information one by one using REST Client.

Now I am trying to get all the issues which match a filter and put it in an array.

I went through already raised requests and posts in this forum. But those are using Searchrequests and searchservice API's which are quite old and replaced with SearchRestClient I assume.

I am aiming to get all issues and put into a list.

If anyone has done it, please let me know. 

Thanks in advance.

2 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

0 votes
Answer accepted
VishnuP
November 9, 2016

For those who come across this Here is the answer

 Set<String> myFields = new HashSet<String>();

myFields.add(custom fields);

etc

Promise<SearchResult> searchJqlPromise = client.getSearchClient().searchJql(jqlForDataEnrichment, 1000, 0,
myFields);

 

//iterate now.

for (Issue issue : searchJqlPromise.claim().getIssues()) {

 System.out.println("Key: " + issue.getKey());

etc

}

 

0 votes
VishnuP
November 7, 2016

I got a solution now. However the number of records being retrieved is only 50 whereas manual execution of JQL returns me 550 records.
Any idea how to override default size to get all records.

Code

Promise<SearchResult> searchJqlPromise = client.getSearchClient().searchJql(jqlForDataEnrichment);

Karsten Himmer
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 14, 2018

Hi,

what's mean the variabel "jqlForDataEnrichment"??

My vision is ... 

Promise searchJqlPromise = client.getSearchClient().
searchJql("filter=28713", 500, 0,myFields);

 What is wrong in my vision??  ... what is the alternative?

THX for helping my ... 

Debasish.Mahapatra2
April 24, 2019

what is 

filter=28713 ??? Could you please elaborate????
Debasish.Mahapatra2
April 24, 2019

I wish to get all issues based on Audience ID custom field? Any idea ? Thanks in advance