Files & DICOM Storage

Centralized storage for medical images and documents

File Upload

Drag & drop files here

or

Accepted: DICOM, PDF, DOCX, JPG
Max size: 100MB per file

DICOM Preview

Select a DICOM file to preview

File Browser

MRI_Brain_123.dcm
12 MB • DICOM
Report_2023-06-15.docx
1.2 MB • DOCX
Consent_Form.pdf
0.5 MB • PDF

PACS Integration

Orthanc Connected
dcm4chee Disabled

Document Generation

API Endpoints

POST /files/upload

Upload files to the system

{
  "file": "[binary data]",
  "studyId": "ST-123456",
  "metadata": {
    "type": "dicom",
    "tags": ["brain", "mri"]
  }
}
GET /files/get/:fileId

Retrieve file by ID

POST /pacs/query

Query PACS system

{
  "patientId": "123456",
  "studyDateFrom": "2023-01-01",
  "modality": "MRI"
}
POST /templates/generate

Generate document from template

{
  "templateId": "rad-report",
  "data": {
    "patient": "John Doe",
    "findings": "Normal brain MRI"
  },
  "format": "pdf"
}