List studies with pagination
StudyListPage autoScribe().studies().list(StudyListParamsparams = StudyListParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
GET/v1/autoScribe/studies
Retrieves a paginated list of studies with optional filtering by assignment, severity, description, cancellation status, and report status. Returns up to 100 studies per request.
Parameters
Returns
List studies with pagination
package com.avara.example;
import com.avara.client.AvaraClient;
import com.avara.client.okhttp.AvaraOkHttpClient;
import com.avara.models.autoscribe.studies.StudyListPage;
import com.avara.models.autoscribe.studies.StudyListParams;
public final class Main {
private Main() {}
public static void main(String[] args) {
AvaraClient client = AvaraOkHttpClient.fromEnv();
StudyListPage page = client.autoScribe().studies().list();
}
}{
"hasMore": true,
"studies": [
{
"cancelledAt": null,
"createdAt": "2024-03-15T10:30:00Z",
"isCancelled": false,
"reportMetadata": {
"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
}
},
"severity": "normal",
"studyDescription": "Brain MRI with Contrast",
"studyId": "stu_1234567890abcdef1234567890abcdef",
"studyInstanceUid": "1.2.840.113619.2.55.3.604688119.868.1234567890.123",
"studyReportStatus": "in_progress",
"updatedAt": "2024-03-15T14:20:00Z",
"assignedTo": {
"email": "dr.smith@radiology.com",
"userId": "usr_1234567890abcdef1234567890abcdef",
"firstName": "John",
"lastName": "Smith",
"middleName": "Robert",
"suffix1": "MD",
"suffix2": "FACR"
},
"clinicalHistory": "clinicalHistory",
"clinicalIndication": "clinicalIndication",
"createdByApiKey": {
"apiKeyId": "550e8400-e29b-41d4-a716-446655440000",
"description": "Production API Key",
"isViewerEnabled": true
},
"createdByUser": {
"email": "dr.smith@radiology.com",
"userId": "usr_1234567890abcdef1234567890abcdef",
"firstName": "John",
"lastName": "Smith",
"middleName": "Robert",
"suffix1": "MD",
"suffix2": "FACR"
},
"expressCustomer": {
"expressCustomerId": "cus_1234567890abcdef1234567890abcdef",
"expressCustomerName": "City Medical Center"
},
"externalPatientId": "externalPatientId",
"isCritical": true,
"metadata": {
"department": "radiology",
"priority": "routine"
},
"modality": "modality",
"priorReports": [
{
"reportText": "IMPRESSION: No acute cardiopulmonary process.",
"externalStudyId": "EXT-2024-001",
"modality": "CT",
"studyDate": "2024-01-15",
"studyDescription": "CT Chest without contrast"
}
],
"reportIds": [
{
"isCritical": null,
"reportId": "rep_1234567890abcdef1234567890abcdef",
"status": "in_progress"
}
],
"technologistNotes": [
"x"
],
"technologistTechnique": "technologistTechnique"
}
],
"cursor": "cursor"
}Returns Examples
{
"hasMore": true,
"studies": [
{
"cancelledAt": null,
"createdAt": "2024-03-15T10:30:00Z",
"isCancelled": false,
"reportMetadata": {
"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
}
},
"severity": "normal",
"studyDescription": "Brain MRI with Contrast",
"studyId": "stu_1234567890abcdef1234567890abcdef",
"studyInstanceUid": "1.2.840.113619.2.55.3.604688119.868.1234567890.123",
"studyReportStatus": "in_progress",
"updatedAt": "2024-03-15T14:20:00Z",
"assignedTo": {
"email": "dr.smith@radiology.com",
"userId": "usr_1234567890abcdef1234567890abcdef",
"firstName": "John",
"lastName": "Smith",
"middleName": "Robert",
"suffix1": "MD",
"suffix2": "FACR"
},
"clinicalHistory": "clinicalHistory",
"clinicalIndication": "clinicalIndication",
"createdByApiKey": {
"apiKeyId": "550e8400-e29b-41d4-a716-446655440000",
"description": "Production API Key",
"isViewerEnabled": true
},
"createdByUser": {
"email": "dr.smith@radiology.com",
"userId": "usr_1234567890abcdef1234567890abcdef",
"firstName": "John",
"lastName": "Smith",
"middleName": "Robert",
"suffix1": "MD",
"suffix2": "FACR"
},
"expressCustomer": {
"expressCustomerId": "cus_1234567890abcdef1234567890abcdef",
"expressCustomerName": "City Medical Center"
},
"externalPatientId": "externalPatientId",
"isCritical": true,
"metadata": {
"department": "radiology",
"priority": "routine"
},
"modality": "modality",
"priorReports": [
{
"reportText": "IMPRESSION: No acute cardiopulmonary process.",
"externalStudyId": "EXT-2024-001",
"modality": "CT",
"studyDate": "2024-01-15",
"studyDescription": "CT Chest without contrast"
}
],
"reportIds": [
{
"isCritical": null,
"reportId": "rep_1234567890abcdef1234567890abcdef",
"status": "in_progress"
}
],
"technologistNotes": [
"x"
],
"technologistTechnique": "technologistTechnique"
}
],
"cursor": "cursor"
}