___ __ / (_) /____ _ ______ ____ _ / / / __/ _ \ | / / __ \/ __ `/ / / / /_/ __/ |/ / / / / /_/ / /_/_/\__/\___/|___/_/ /_/\__,_/
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.
To issue a QIDO request, use a path such as: https://litevna.app/dicomweb/studies?limit=100
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
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
To store a dicom file (STOW), send a POST request to:
https://litevna.app/dicomweb/studies
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]
DELETE https://litevna.app/dicomweb/studies/[StudyInstanceUID]/series/[SeriesInstanceUID]/instances/[SOPInstanceUID]