## Delete an item photo `DELETE https://getkollek.com/api/items/{item}/photos/{photo}` Delete a photo, removing its file from storage. When the main photo is deleted, the next photo by position becomes the main visual. **Permissions:** Owners and editors. Viewers get a 404 response. ### Path parameters - `item` (integer, required): The ID of the item the photo belongs to. - `photo` (integer, required): The ID of the photo. **Returns:** An empty response. ### Example request ```bash curl https://getkollek.com/api/items/1/photos/1 \ -X DELETE \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 204` The response has no body.