This is the dicomweb root path.

QIDO

To issue a QIDO request, use a path such as: https://litevna.app/dicomweb/studies?limit=100

WADO

To issue a WADO request, use a path with the pattern:

https://litevna.app/dicomweb/studies/[studyUID]/series/[seriesUID]/metadata

or

https://litevna.app/dicomweb/studies/[StudyInstanceUID]/series/[SeriesInstanceUID]/instances/[SOPInstanceUID]/frame/1
DICOM Part 10

To download dicom part 10 file, set the Accept header to "application/dicom" on an instance level request, like:

GET https://litevna.app/dicomweb/studies/[StudyInstanceUID]/series/[SeriesInstanceUID]/instances/[SOPInstanceUID]
Accept: application/dicom

STOW

To store a dicom file (STOW), send a POST request to:

https://litevna.app/dicomweb/studies

DELETE

To delete a study, series, or instance and all child objects, send a DELETE request to the corresponding url, such as:

DELETE https://litevna.app/dicomweb/studies/[StudyInstanceUID]

or

DELETE https://litevna.app/dicomweb/studies/[StudyInstanceUID]/series/[SeriesInstanceUID]/instances/[SOPInstanceUID]
Made by Jason Hostetter