# Remove catalog record

Permanently deletes an existing Catalog record.

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/catalog/relations/{relation_id}/records/{record_id}"
method = "DELETE"

[[path_param]]
name = "relation_id"
description = "The ID of the Catalog relation you want to delete a record for."
required = true
type = "string"

[[path_param]]
name = "record_id"
description = "The ID of the Catalog record 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 empty body'''
body = ''''''

[/responses]

#### Example cURL 

```shell
[label Example]
curl --request DELETE \
  --url https://uptime.betterstack.com/api/v2/catalog/relations/37/records/67 \
  --header "Authorization: Bearer $TOKEN"
```

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