## Delete a maintenance record `DELETE https://getkollek.com/api/copies/{copy}/maintenance-records/{maintenanceRecord}` Delete a maintenance record. Any provenance event it generated is removed with it. **Permissions:** Owners and editors. Viewers get a 404 response. ### Path parameters - `copy` (integer, required): The ID of the copy the maintenance record belongs to. - `maintenanceRecord` (integer, required): The ID of the maintenance record. **Returns:** An empty response. ### Example request ```bash curl https://getkollek.com/api/copies/1/maintenance-records/1 \ -X DELETE \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 204` The response has no body.