Is there a way I can access the hosted instance database to extract info into a csv file?

bill.bennett@hanesbrands.com November 1, 2011

In this hosted instance of JIRA, is there a way I can access the database to extract information. e.g. user information, including username, full name, and email address into a csv

2 answers

1 accepted

0 votes
Answer accepted
Jeremy Largman
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
November 4, 2011

No, you can't access the database, but you can use the remote API. You might have to enable the Remote API in your administration console (or request it from us), but you can get user info that way. Try the CLI:

https://studio.plugins.atlassian.com/wiki/display/JCLI/JIRA+Command+Line+Interface

getUserList() is a good method:

jira --action getUserList     --group "testgroup2"  

From there, you could then do getUser programatically.

Alternatively, I believe you can request an XML backup, then restore it locally and extract info from a database that way.

0 votes
bill.bennett@hanesbrands.com November 20, 2011

Thanks Jeremy, I will try both your methods and see which is easier...

Suggest an answer

Log in or Sign up to answer