# Delete a sitemap entry

**Publié le** : 2026-05-08
**Catégorie** : SEO & Analytics

## `DELETE /sitemap/entries/:id`

**Delete a sitemap entry**

Removes a custom entry from the sitemap.

Required permissions: `sitemap.delete`

### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `id` | path | string | Yes | Unique identifier |


### Responses

| Status | Description |
| --- | --- |
| `204` | Deleted (no body) |
| `401` | Unauthorized — invalid or missing API token |
| `403` | Forbidden — insufficient permissions |
| `404` | Not found |


### Response Example

```json
{
  "description": "Returns HTTP 204 No Content on success."
}
```

---