# Delete a tag

**Publié le** : 2026-05-08
**Catégorie** : Core CMS

## `DELETE /tags/:id`

**Delete a tag**

Deletes a tag. Contents are not affected — they lose the tag association.

Required permissions: `tags.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 |


### Examples

```bash
curl -X DELETE https://api.lynkow.com/v1/tags/10 \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
{
  "message": "Tag deleted"
}
```

---