Update a study
Updates a study's properties including description, severity, assignment, organization, metadata, and report metadata. All fields are optional - only provided fields will be updated.
Path Parameters
Unique study identifier. Format: stu_{32-hex-chars}
Body ParametersJSON
User ID to assign the study to, or null to unassign. Format: usr_{32-hex-chars}
Relevant clinical history for the patient/study. Null clears.
Clinical indication for the study. Null clears.
Express Customer ID for the study, or null to remove. Format: cus_{32-hex-chars}
Integrator-provided stable patient identifier used to link studies for the same patient. Null clears.
Imaging modality for the study (free text). Null clears.
Description of the study/scan (e.g., 'Brain MRI with Contrast', 'Chest CT')
Technologist notes for the study. Null clears; an array replaces the existing set. Maximum 50 items, each up to 1000 characters
Imaging technique description provided by the technologist. Null clears.
Returns
Timestamp when the study was cancelled, null if not cancelled
Timestamp when the study was created
Whether the study has been cancelled
Description of the study/scan (e.g., 'Brain MRI with Contrast', 'Chest CT')
Unique study identifier. Format: stu_{32-hex-chars}
DICOM Study Instance UID. Must be a valid DICOM UID format (e.g., '1.2.840.10008.5.1.4.1.1.2')
Timestamp when the study was last updated
Relevant clinical history for the study
Clinical indication for the study
Integrator-provided stable patient identifier for linking studies
Whether the primary report was marked as critical at sign-off
Custom key-value metadata for the study. Maximum 50 pairs, keys up to 100 chars, values up to 1000 chars
Imaging modality for the study (free text)
Technologist notes for the study
Imaging technique description
Update a study
curl https://api.avarasoftware.com/v1/autoScribe/studies/$STUDY_ID \
-X PATCH \
-H "Authorization: Bearer $AVARA_API_KEY"{
"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"
}Returns Examples
{
"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"
}