Retrieve report PDF URL
ReportPdfResponse autoScribe().reports().pdf(ReportPdfParamsparams = ReportPdfParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
/v1/autoScribe/reports/pdf
Retrieves presigned URLs for accessing report PDFs. Can fetch a single report by report ID, or all reports for a study by study ID/DICOM UID. URLs are time-limited for security.
Parameters
Returns
Retrieve report PDF URL
package com.avara.example;
import com.avara.client.AvaraClient;
import com.avara.client.okhttp.AvaraOkHttpClient;
import com.avara.models.autoscribe.reports.ReportPdfParams;
import com.avara.models.autoscribe.reports.ReportPdfResponse;
public final class Main {
private Main() {}
public static void main(String[] args) {
AvaraClient client = AvaraOkHttpClient.fromEnv();
ReportPdfResponse response = client.autoScribe().reports().pdf();
}
}
{
"presignedUrl": "https://storage.avarasoftware.com/reports/rep_1234.pdf?token=abc123",
"reportId": "rep_1234567890abcdef1234567890abcdef",
"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
}
},
"studyId": "stu_1234567890abcdef1234567890abcdef",
"studyInstanceUid": "1.2.840.113619.2.55.3.604688119.868.1234567890.123"
}
Returns Examples
{
"presignedUrl": "https://storage.avarasoftware.com/reports/rep_1234.pdf?token=abc123",
"reportId": "rep_1234567890abcdef1234567890abcdef",
"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
}
},
"studyId": "stu_1234567890abcdef1234567890abcdef",
"studyInstanceUid": "1.2.840.113619.2.55.3.604688119.868.1234567890.123"
}