Skip to main content

series

Creates, updates, deletes, gets or lists a series resource.

Overview

Nameseries
TypeResource
Idgoogle.healthcare.series

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
deleteDELETEdatasetsId, dicomStoresId, locationsId, projectsId, seriesId, studiesIdDeleteSeries deletes all instances within the given study and series. Delete requests are equivalent to the GET requests specified in the Retrieve transaction. The method returns an Operation which will be marked successful when the deletion is complete. Warning: Instances cannot be inserted into a series that is being deleted by an operation until the operation completes. For samples that show how to call DeleteSeries, see Delete a study, series, or instance.
search_for_instancesEXECdatasetsId, dicomStoresId, locationsId, projectsId, seriesId, studiesIdSearchForInstances returns a list of matching instances. See [Search Transaction] (http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6). For details on the implementation of SearchForInstances, see Search transaction in the Cloud Healthcare API conformance statement. For samples that show how to call SearchForInstances, see Search for DICOM data.

DELETE example

Deletes the specified series resource.

/*+ delete */
DELETE FROM google.healthcare.series
WHERE datasetsId = '{{ datasetsId }}'
AND dicomStoresId = '{{ dicomStoresId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}'
AND seriesId = '{{ seriesId }}'
AND studiesId = '{{ studiesId }}';