List reports for a study
ReportListResponse autoScribe().reports().list(ReportListParamsparams = ReportListParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
/v1/autoScribe/reports
Retrieves all reports (including versions and addendums) for a specific study. Must provide either study ID or DICOM Study Instance UID. Returns report metadata including status, version, and timestamps.
Parameters
Returns
List reports for a study
package com.avara.example;
import com.avara.client.AvaraClient;
import com.avara.client.okhttp.AvaraOkHttpClient;
import com.avara.models.autoscribe.reports.ReportListParams;
import com.avara.models.autoscribe.reports.ReportListResponse;
public final class Main {
private Main() {}
public static void main(String[] args) {
AvaraClient client = AvaraOkHttpClient.fromEnv();
ReportListResponse reports = client.autoScribe().reports().list();
}
}
{
"reports": [
{
"createdAt": "2024-03-15T14:30:00Z",
"isAddendum": false,
"reportId": "rep_1234567890abcdef1234567890abcdef",
"signedAt": "2024-03-15T16:00:00Z",
"snapshotMetadata": {
"age": "38 years",
"dateOfBirth": "1985-07-20",
"facilityName": "City Medical Center",
"height": {
"unit": "cm",
"value": 165
},
"mrn": "MRN-2024-001234",
"patientName": "Jane Doe",
"referringPhysicianName": "Dr. Michael Chen",
"scanDate": "2024-03-15",
"scanTime": "14:30",
"scanType": "MRI Brain with Contrast",
"sex": "female",
"weight": {
"unit": "kg",
"value": 62
}
},
"status": "completed",
"studyId": "stu_1234567890abcdef1234567890abcdef",
"updatedAt": "2024-03-15T16:00:00Z",
"userId": "usr_1234567890abcdef1234567890abcdef",
"reportPlainText": "FINDINGS: Normal brain MRI. No acute intracranial abnormality. IMPRESSION: Unremarkable brain MRI."
}
],
"studyId": "stu_1234567890abcdef1234567890abcdef",
"studyInstanceUid": "1.2.840.113619.2.55.3.604688119.868.1234567890.123"
}
Returns Examples
{
"reports": [
{
"createdAt": "2024-03-15T14:30:00Z",
"isAddendum": false,
"reportId": "rep_1234567890abcdef1234567890abcdef",
"signedAt": "2024-03-15T16:00:00Z",
"snapshotMetadata": {
"age": "38 years",
"dateOfBirth": "1985-07-20",
"facilityName": "City Medical Center",
"height": {
"unit": "cm",
"value": 165
},
"mrn": "MRN-2024-001234",
"patientName": "Jane Doe",
"referringPhysicianName": "Dr. Michael Chen",
"scanDate": "2024-03-15",
"scanTime": "14:30",
"scanType": "MRI Brain with Contrast",
"sex": "female",
"weight": {
"unit": "kg",
"value": 62
}
},
"status": "completed",
"studyId": "stu_1234567890abcdef1234567890abcdef",
"updatedAt": "2024-03-15T16:00:00Z",
"userId": "usr_1234567890abcdef1234567890abcdef",
"reportPlainText": "FINDINGS: Normal brain MRI. No acute intracranial abnormality. IMPRESSION: Unremarkable brain MRI."
}
],
"studyId": "stu_1234567890abcdef1234567890abcdef",
"studyInstanceUid": "1.2.840.113619.2.55.3.604688119.868.1234567890.123"
}