## Delete several photos `DELETE https://getkollek.com/api/photos` Delete several photos of your account in one call, removing their files from storage. The photos do not have to belong to the same item, which is why this endpoint is not nested under one. The call is all or nothing. If any ID in the list does not belong to your account, nothing is deleted and the response is a 404. The call cannot be undone: deleted photos do not go to the trash. **Permissions:** Owners and editors. Viewers get a 404 response. ### Body parameters - `photo_ids` (array of integers, required): The IDs of the photos to delete. Must contain at least one ID, and every ID must belong to your account. **Returns:** An empty response. ### Example request ```bash curl https://getkollek.com/api/photos \ -X DELETE \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -d '{ "photo_ids": [ 1, 2 ] }' ``` ### Example response `Status: 204` The response has no body.