Get All Reports

Overview

This endpoint is designed to provide a comprehensive list of all reports stored within the system. It allows for bulk retrieval of report data, The response includes a count of the reports and a detailed list, with each report containing its unique identifier, study information, and content.

URL : /

Method : GET

Host: http://172.16.223.10:6665

Success Response

Code : 200 OK

Content example

{
    "status": "success", 
    "source": "MedDream_Mirth_Integration",
    "timestamp": "2025-08-13T06:52:02.372Z",
    "report_count": 5,
    "reports": [
        {
            "id": "1",
            "storage_id": "d4c5Dicomweb",
            "study_uid": "2.25.285373597576069369654559353906451446189",
            "user": "mdadmin",
            "content": "<p>the patient is alive and well though i fear they maybe some residue of the cancer left, immediate colonoscopy is advised.</p>",
            "created": "2025-07-21 07:50:42.0"
        },
        {
            "id": "2",
            "storage_id": "d4c5Dicomweb",
            "study_uid": "2.25.301697547224500471306119209091628372132",
            "user": "mdadmin",
            "content": "<p>Patient is okay and well</p>",
            "created": "2025-07-21 10:49:29.0"
        },
    ]
}