## Delete a document `DELETE https://getkollek.com/api/documents/{document}` Delete a document. If it is a stored file, the file is removed from disk as well. This cannot be undone. **Permissions:** Owners and editors. Viewers get a 404 response. ### Path parameters - `document` (integer, required): The ID of the document. **Returns:** An empty response. ### Example request ```bash curl https://getkollek.com/api/documents/1 \ -X DELETE \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 204` The response has no body.