This method allows you to delete an existing known host within a project.

## URL

```
/projects/<project>/build_known_hosts/<identifier>
```

* Replace `<project>` with either the `permalink` or `identifier` of the project.
* Replace `<identifier>` with the identifier of the known host.

## 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/api-created/build_known_hosts/4eb9cb76-777c-415c-9768-7be926c811d3
```

## Example response

```json
{
  {"status":"deleted"}
}
```