Cancel a study
StudyCancelResponse Viewer.Studies.Cancel(StudyCancelParams?parameters, CancellationTokencancellationToken = default)
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.
Parameters
Returns
Cancel a study
StudyCancelParams parameters = new();
var response = await client.Viewer.Studies.Cancel(parameters);
Console.WriteLine(response);{
"success": true,
"message": "message"
}Returns Examples
{
"success": true,
"message": "message"
}