Retrieve an external report
ReportRetrieveResponse autoScribe().studies().external().reports().retrieve(ReportRetrieveParamsparams = ReportRetrieveParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
GET/v1/autoScribe/studies/external/reports/{externalReportId}
Returns snapshot metadata plus report text and/or a short-lived download URL. Text is what AI priors use; the file is reader-only and is not used for AI.
Retrieve an external report
package com.avarasoftware.example;
import com.avarasoftware.client.AvaraClient;
import com.avarasoftware.client.okhttp.AvaraOkHttpClient;
import com.avarasoftware.models.autoscribe.studies.external.reports.ReportRetrieveParams;
import com.avarasoftware.models.autoscribe.studies.external.reports.ReportRetrieveResponse;
public final class Main {
private Main() {}
public static void main(String[] args) {
AvaraClient client = AvaraOkHttpClient.fromEnv();
ReportRetrieveResponse report = client.autoScribe().studies().external().reports().retrieve("ext_1234567890abcdef1234567890abcdef");
}
}{
"createdAt": "2019-12-27T18:11:19.117Z",
"externalReportId": "ext_1234567890abcdef1234567890abcdef",
"studyId": "stu_1234567890abcdef1234567890abcdef",
"studyInstanceUid": "1.2.840.113619.2.55.3.604688119.868.1234567890.123",
"presignedUrl": "https://viewer.avarasoftware.com/study/stu_1234",
"readerName": "readerName",
"reportText": "reportText",
"signedAt": "signedAt",
"snapshotMetadata": {
"age": "38 years",
"dateOfBirth": "1985-07-20",
"facilityName": "City Medical Center",
"height": {
"unit": "cm",
"value": 165
},
"mrn": "MRN-2024-001234",
"patientName": "Jane Doe",
"procedure": "MRI Brain with Contrast",
"referringPhysicianName": "Dr. Michael Chen",
"sex": "female",
"studyDate": "2024-03-15",
"studyTime": "14:30",
"weight": {
"unit": "kg",
"value": 62
}
}
}Returns Examples
{
"createdAt": "2019-12-27T18:11:19.117Z",
"externalReportId": "ext_1234567890abcdef1234567890abcdef",
"studyId": "stu_1234567890abcdef1234567890abcdef",
"studyInstanceUid": "1.2.840.113619.2.55.3.604688119.868.1234567890.123",
"presignedUrl": "https://viewer.avarasoftware.com/study/stu_1234",
"readerName": "readerName",
"reportText": "reportText",
"signedAt": "signedAt",
"snapshotMetadata": {
"age": "38 years",
"dateOfBirth": "1985-07-20",
"facilityName": "City Medical Center",
"height": {
"unit": "cm",
"value": 165
},
"mrn": "MRN-2024-001234",
"patientName": "Jane Doe",
"procedure": "MRI Brain with Contrast",
"referringPhysicianName": "Dr. Michael Chen",
"sex": "female",
"studyDate": "2024-03-15",
"studyTime": "14:30",
"weight": {
"unit": "kg",
"value": 62
}
}
}