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

# lim docs

> Manage receipts, invoices, contracts, and other evidence files for electronic bookkeeping compliance.

# lim docs

`docs` manages stored evidence files and metadata used for electronic transaction retention.

## Commands

```bash theme={null}
lim docs list
lim docs list --from 2026-01-01 --to 2026-03-31 --electronicOnly
lim docs show <document-id>
lim docs upload --fileName invoice.pdf --fileUrl https://...
```

## Filters

| Option                       | Purpose                           |
| ---------------------------- | --------------------------------- |
| `--from`, `--to`             | Filter by transaction date        |
| `--counterparty`             | Search by counterparty            |
| `--amountMin`, `--amountMax` | Filter by amount                  |
| `--status`                   | Filter by document status         |
| `--electronicOnly`           | Show only electronic transactions |

## Upload example

```bash theme={null}
lim docs upload \
  --fileName receipt-2026-03-22.pdf \
  --fileUrl https://storage.example.com/receipt-2026-03-22.pdf \
  --type receipt \
  --date 2026-03-22 \
  --amount 11000 \
  --counterparty AWS \
  --electronic true
```
