# Remove a dashboard group

Permanently deletes a dashboard group by its ID.

[info]
Deleting a group does not delete the dashboards within it. Those dashboards will become ungrouped.
[/info]

[endpoint]
base_url = "https://telemetry.betterstack.com"
path = "/api/v2/dashboard-groups/{id}"
method = "DELETE"

[[path_param]]
name = "id"
description = "The unique identifier of the dashboard group to delete."
required = true
type = "integer"

[[header]]
name = "Authorization"
description = "Bearer `$TOKEN`"
required = true
type = "string"
[/endpoint]

[responses]
[[response]]
status = 204
description = "The dashboard group was successfully deleted. No content is returned."

[[response]]
status = 404
description = "A dashboard group with the specified ID was not found."
[/responses]

## Example request

```shell
[label cURL]
curl --request DELETE \
     --url "https://telemetry.betterstack.com/api/v2/dashboard-groups/456" \
     --header "Authorization: Bearer $TOKEN"
```
