You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
i would like to automatically get some JIRA fields, especially regarding epics. i want them to be exported on a spreadsheet and be displayed using tableau
If you have a JQL query that gets you the information you need you could include that in gsheets using the "JIRA Cloud for Sheets" extension.
You could then tie that into Tableau.
I'm not sure how automated it can be made, but this might give you some pointers to get closer to what you want.
I'd suggest creating a filter that returns the issues and fields you need. If you view the filter, you get a URL like:
https://myjira.atlassian.com/issues/?filter=12345
The number on the end is the ID of your filter.
If you click the export button (top right), one of the links on the dropdown is "Export Excel CSV (current fields)". You can right click on that and copy the link. It will be soemthing like
In theory, hitting the URL you generated will return the latest CSV for your filter. You might need to edit the sharing settings for your filter/project to change how it behaves if you are not logged in. Creating a logged in request from an application is more complex, and I won't cover that here. Once this is working, your spreadsheet tool may provide a way to automatically query this URL.
Note that the format of the URL I used here is not a guaranteed JIRA API. (That is, it might change.)
Another alternative would be to use the JIRA REST API to get the query results from a filter.
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.