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