Uncancel a study
client.viewer.studies.uncancel(StudyUncancelParams { studyId, studyInstanceUid } body?, RequestOptionsoptions?): StudyUncancelResponse { success, message }
/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
Returns
Uncancel a study
import Avara from 'avara';
const client = new Avara({
apiKey: process.env['AVARA_API_KEY'], // This is the default and can be omitted
});
const response = await client.viewer.studies.uncancel();
console.log(response.success);
{
"success": true,
"message": "message"
}
Returns Examples
{
"success": true,
"message": "message"
}