v1

latestOpenAPI 3.1.02026-08-066378446.6 KB
Document Operations

List stored files

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

Lists all files in the file storage of the given document.

If you need to download the content of a stored file, see the Show/download stored file request.

get/documents/{document}/file-storage

Path parameters

documentstring required

The document UUID

Response

Array of StoredFileMinimalResource

Example response

{
  "data": [
    {
      "uuid": "c3f8ca57-b1a4-4560-b3fe-5f3fffb333dd",
      "sha256": "697651f6ceea8a931289ff64cb62f78ceea5d36f7e84590fe9d5920b2dce52cf",
      "file_name": "NDA_BigCorp.pdf",
      "file_size": 544600,
      "mime_type": "application/pdf"
    }
  ]
}