# Remove incident

This will permanently delete an existing incident.

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v3/incidents/{incident_id}"
method = "DELETE"

[[path_param]]
name = "incident_id"
description = "The ID of the incident 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 response'''
body = ''''''
[/responses]

#### Example cURL 

```shell
[label Example]
curl --request DELETE \
  --url https://uptime.betterstack.com/api/v3/incidents/123456 \
  --header "Authorization: Bearer $TOKEN"
```

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

