Forums

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

How to export excel all fields in Jira by Java Programming ?

Deepak Raj January 16, 2019
I have some Jira Jql.
After executing those jql in Jira I want to export all field to excel. I am able to execute jql programmatically and also able to fetch the fields individually.
But fetching all the fields individually takes too much effort and making the program very lengthy. I want to export the excel all fields.

2 answers

0 votes
Deepak Raj January 16, 2019

Hi Ismael,

Thanks for the response. 

0 votes
Ismael Jimoh
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.
January 16, 2019

Hi Deepak,

JIRA does not have a simple script that can fetch all fields directly.

Your best bets are:

  • Exporting from the UI(if you are not using this for anything past just export to excel).
  • In your script, have all fields possible and grab the results for all(very tedious and messy as you would be doing a recursive getCustomFieldValue for all fields).

Other than these, I do not know of any other way you can do this and JIRA does not have a Rest API to export the search result.

If anyone has an idea how he can export it, please do share.

Suggest an answer

Log in or Sign up to answer