Hi,
You are allowed to export user information from Jira to say an Excel sheet. Aside from going manually going to admin >> users >> export users, is there a feature to automate this reporting?
Thanks, Andy
Hello Andrew,
Unfortunately, JIRA does not have an automation feature to export users periodically in CSV format, however, you can use JIRA REST API to create a script and properly get users in JSON format, posteriorly changing to CSV.
- If you are using JIRA Cloud, this would be the correct endpoint:
https://yourdomain.atlassian.net/rest/api/3/user/search?username=
Reference:
- If you are using Server, a little change must be performed:
https://yourdomain/jira/rest/api/2/user/search?username=""
reference to the link below:
Let me know if this option works for you.
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are most welcome! :)
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.