## Delete a series `DELETE https://getkollek.com/api/series/{series}` Delete a series. The items linked to it are unlinked, not deleted. **Permissions:** Owners and editors. Viewers get a 404 response. ### Path parameters - `series` (integer, required): The ID of the series. **Returns:** An empty response. ### Example request ```bash curl https://getkollek.com/api/series/1 \ -X DELETE \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 204` The response has no body.