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