---
title: "How to bulk projects delete in Jira"
canonical: "https://support.appfire.com/space/SUPPORT/89130815/How%20to%20bulk%20projects%20delete%20in%20Jira"
format: markdown
---
You can achieve multiple projects deletion by using a CSV file with all the projects listed.

## Instructions

> ⚠️ <span style="color: #172b4d">To be able to delete a project you need to have </span><span style="color: #172b4d">**Jira admin access**</span><span style="color: #172b4d">. </span>

Here's how you do it:

1. Create a CSV file with all the projects for deletion listed.
2. Run a command with [runFromCsv](https://bobswift.atlassian.net/l/c/etFxrEkr) like the following on CLI terminal:

```
--action runFromCsv --file "filename.csv" --common "--action deleteProject" --continue
```


Example of CSV:

```
project,name
TEST,"Test"
WIT,"Without"
```


> ℹ️ <span style="color: #091e42">After --file you should use the directory path for the CSV in question. </span>