# Remove a Document

`DELETE /lokta-lms/api/v1/{entityType}/{entityId}/documents/{documentId}`

## Parameters
- `entityType` (path, string, required)
- `entityId` (path, integer, required)
- `documentId` (path, integer, required)

## Responses
- `200`: OK

## Example request (cURL)
```bash
curl -X DELETE \
  'http://localhost:8080/lokta-lms/api/v1/{entityType}/{entityId}/documents/{documentId}' \
  -u '{username}:{password}' \
  -H 'Tenant-Identifier: default'
```

Interactive: https://developer.lokta.ai/reference.html#operation/deleteDocument
