This method allows you to delete an existing build command from a project.

## URL

```
/projects/<project>/build_commands/<identifier>
```

* Replace `<project>` with either the `permalink` or `identifier` of the project.
* Replace `<identifier>` with the identifier of the build command.

## HTTP METHOD

```
DELETE
```

## Supported Parameters

None

## Example cURL request

```bash
curl -H "Content-type: application/json" \
-H "Accept: application/json" \
--user adam@atechmedia.com:my-api-key \
-X DELETE \
https://atech.deployhq.com/projects/atomic-deployment-test/build_commands/d89fd915-545b-473e-b986-5c4a0156ec72
```

## Example response

```json
{
  "status":"deleted"
}
```