Uncancel a study
auto_scribe.studies.uncancel(StudyUncancelParams**kwargs) -> StudyUncancelResponse
POST/v1/autoScribe/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.
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.auto_scribe.studies.uncancel()
print(response.success){
"success": true,
"message": "message"
}Returns Examples
{
"success": true,
"message": "message"
}