Cancel a study
viewer.studies.cancel(StudyCancelParams**kwargs) -> StudyCancelResponse
POST/v1/viewer/studies/cancel
Marks a study as cancelled. Cancelled studies are preserved but flagged as inactive. Can be identified by either study ID or DICOM Study Instance UID.
Cancel 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.cancel()
print(response.success){
"success": true,
"message": "message"
}Returns Examples
{
"success": true,
"message": "message"
}