> ## Documentation Index
> Fetch the complete documentation index at: https://docutrack-docs.icpitalia.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete a Document

> Inter-Canister Flows

```mermaid theme={null}
sequenceDiagram
    actor A as Alice
    participant O as Orchestrator
    participant UC as Alice's User Canister
    A->>UC: delete_file (id)
    UC->>O: Revoke all shares from the index for this file
    O->>UC: OK
    UC->>UC: Delete file
    UC->>A: OK
```
