Need to delete Multiple projects in one of our cloud instance. Is there any option called bulk Project delete?
I wrote a little python script to do this and published it here: https://coderoman.wordpress.com/2021/08/04/bulk-delete-projects-in-jira/
You could use Jira Rest Api to delete projects.
You would need to select all projects first:
https://docs.atlassian.com/software/jira/docs/api/REST/7.12.0/#api/2/project-getAllProjects
Then you would iterate all the projects and deleted the required ones:
https://docs.atlassian.com/software/jira/docs/api/REST/7.12.0/#api/2/project-deleteProject
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
no there is no such option as Bulk project delete. this has to be done manually.
or you can do a export of your site and then delete your site and get a new one.
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.