Uncancel a study
viewer.studies.uncancel(StudyUncancelParams**kwargs) -> StudyUncancelResponse
/v1/viewer/studies/uncancel
Restores a cancelled study to active status. The study must have been previously cancelled. Can be identified by either study ID or DICOM Study Instance UID.
Parameters
study_id: Optional[str]
Unique study identifier. Format: stu_{32-hex-chars}
study_instance_uid: Optional[str]
DICOM Study Instance UID. Must be a valid DICOM UID format (e.g., '1.2.840.10008.5.1.4.1.1.2')
minLength1
Returns
Uncancel a study
import os
from avara import Avara
client = Avara(
api_key=os.environ.get("AVARA_API_KEY"), # This is the default and can be omitted
)
response = client.viewer.studies.uncancel()
print(response.success)
{
"success": true,
"message": "message"
}
Returns Examples
{
"success": true,
"message": "message"
}