## Remove a tag from an item `DELETE https://getkollek.com/api/items/{item}/tags/{tag}` Detach a tag from an item. The tag itself is kept and stays available for other items. Use the delete tag endpoint to remove it from the account entirely. **Permissions:** Owners and editors. Viewers get a 404 response. ### Path parameters - `item` (integer, required): The ID of the item. - `tag` (integer, required): The ID of the tag. **Returns:** An empty response. ### Example request ```bash curl https://getkollek.com/api/items/1/tags/1 \ -X DELETE \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 204` The response has no body.