# Remove status update

Permanently deletes a status page report update.

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/status-pages/{status_page_id}/status-reports/{status_report_id}/status-updates/{status_update_id}"
method = "DELETE"

[[path_param]]
name = "status_page_id"
description = "The ID of your status page"
required = true
type = "string"

[[path_param]]
name = "status_report_id"
description = "The ID of your status page report"
required = true
type = "string"

[[path_param]]
name = "status_update_id"
description = "The ID of your status update"
required = true
type = "string"

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

[responses]
[[response]]
status = 204
description = '''Returns empty body'''
body = ''''''
[/responses]

#### Example cURL 

```shell
[label Example]
[label Example cURL]
curl --request DELETE \
  --url https://uptime.betterstack.com/api/v2/status-pages/123456/status-reports/12345/status-updates/123456 \
  --header "Authorization: Bearer $TOKEN"
```

[info]
#### Looking for the details of a specific parameter?
Explore [the list of all status page report updates API parameters](https://betterstack.com/docs/uptime/api/status-page-report-updates-api-response-params/)
[/info]
