## Delete a provenance event `DELETE https://getkollek.com/api/copies/{copy}/provenance-events/{provenanceEvent}` Delete a provenance event. The transaction it was linked to, if any, is left untouched. **Permissions:** Owners and editors. Viewers get a 404 response. ### Path parameters - `copy` (integer, required): The ID of the copy the provenance event belongs to. - `provenanceEvent` (integer, required): The ID of the provenance event. **Returns:** An empty response. ### Example request ```bash curl https://getkollek.com/api/copies/1/provenance-events/1 \ -X DELETE \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 204` The response has no body.