I'm trying to pull a CSV file with the dump of all projects listed under my site, however, I'm not certain of how to proceed further.
Any help on this would be appriciated!!!
with API (returns a JSON)
yourjira.com/api/latest/project
with DB
SELECT * FROM project;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you get an error? no data are received? have you tried both?
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.
in the API you should add parameter expand=lead
{{url}}/project?expand=lead
In the DB the table project has a field named LEAD with the username of the project lead
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Check this link, it should help you to export to csv.
I would do this while running queries for each project, like project = XYZ and then export that project to a csv
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.