This method allows you to delete a project.

**Tip**: You can explore and test this endpoint interactively using our [OpenAPI documentation](https://api.deployhq.com/docs).

## URL

```
/projects/<project>
```

Replace `<project>` with either the `permalink` or `identifier` of the project.

## HTTP Method

```
DELETE
```

## Supported Parameters

None

## Example cURL Request

```
curl -H "Content-type: application/json" \
-H "Accept: application/json" \
--user adam@atechmedia.com:my-api-key \
-X DELETE \
https://atech.deployhq.com/projects/hgtest
```

## Example Response

```json
{
    "status": "deleted"
}
```