---
title: "List stored files"
method: GET
path: "/documents/{document}/file-storage"
tags: ["Document Operations"]
---

# List stored files

`GET /documents/{document}/file-storage`

<small>Requires an API token with the **Document Reader** role.</small>

Lists all files in the file storage of the given [document](/#documents).

If you need to download the content of a stored file, see the [Show/download stored
file](/operations/v1.documents.document-file-storage.show) request.

## Path parameters

- `document` string, required

## Response `200`

Array of `StoredFileMinimalResource`

- object
  - `data` StoredFileMinimalResource[], required
    - `uuid` string, required — UUID of the uploaded file.
    - `sha256` string, required — SHA256 hash of the uploaded file.
    - `file_name` string, required — Name of the uploaded file.
    - `file_size` integer, required — Size of the uploaded file in bytes.
    - `mime_type` string, required — MIME type of the uploaded file.

## Other responses

- `401` — Unauthenticated
- `403` — Authorization error
- `404` — Not found

---

[API](https://skmtc.dev/fynk/apis/fynk-api-reference.md) · [All operations](https://skmtc.dev/fynk/apis/fynk-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fynk/fynk-api-reference/revisions/9657a6757f59/schema)
