This method allows you to delete a server group using the Dial 9 API.

**Tip**: You can explore and test this endpoint interactively using our [OpenAPI documentation](https://api.deployhq.com/docs).

## URL

```
/projects/<project>/server_groups/<identifier>
```

* Replace `<project>` with either the `permalink` or `identifier` of the project.
* Replace `<identifier>` with the identifier of the server group.

## 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/atomic-deployment-test/server_groups/983f6f1b-0d8b-4860-ad44-3cc4890a0097
```

## Example response

```json
{
  "status":"deleted"
}
```
