Overview

Once you have created an account and logged in, you can create an image store. Each image store has a unique label across all image stores, not just the ones owned by you. Image stores are interacted with using api tokens, which can be created in your account for each store.


All images stores share a common dicomweb root at https://litevna.app/dicomweb.


All requests must include a valid api token either using a bearer token such as

Authorization: Bearer [token]

or in a cookie named litevna-token with the value of the token.

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