---
title: "admDeleteProject"
canonical: "https://support.appfire.com/space/PSJC/521896329/admDeleteProject"
format: markdown
---
> Macro (aura-html)


## Description

> Macro (excerpt)
> 
> Deletes the project indicated in the project_key parameter.

Deletes the project indicated in the project_key parameter.

|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | admDeleteProject(project_key) | **Package** | adm |
| **Alias** |  | **Pkg Usage** | deleteProject(project_key) |

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| project_key | string | Yes | The project key. The value must be unique. |

## Return Type

**Boolean**

Returns true if the project has been deleted.

## Examples

### Example 1

```javascript
string key_basic = "B"+ count++;
deleteProject(key_basic);
```

### Example 2

```javascript
string key_cmpl = "C"+ count;
deleteProject(key_cmpl);
```

## See also

> Macro (contentbylabel)