# Remove status page group

Permanently deletes an existing status page group.

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/status-page-groups/{status_page_group_id}"
method = "DELETE"

[[path_param]]
name = "status_page_group_id"
description = "The ID of the status page group you want to delete."
required = true
type = "string"

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

[responses]
[[response]]
status = 204
description = '''Returns an empty body on successful deletion.'''
body = ''''''
[/responses]

#### Example cURL

```shell
[label Example]
curl --request DELETE \
  --url https://uptime.betterstack.com/api/v2/status-page-groups/1372854 \
  --header "Authorization: Bearer $TOKEN"
```
