The STOW-RS Service stores DICOM instances to a PACS server. This service conforms to the latest version (2015c) of the DICOM PS3.18 specification.
Refer to the Specification Reference for information about calling this service.
Resource |
{SERVICE}/api/stow-rs |
Method |
POST |
Specification Reference |
cURL is an open source, command-line tool that can be used to post to a PACS server. It will be used in the following samples to store image2.dcm to the server:
Store a DICOM instance having a study id
curl -H "Content-Type: multipart/related; type=\"application/dicom\"" -F "content=@IMAGE2.dcm; type=application/dicom" -X POST http://localhost:23133/api/stow/studies/idgoeshere -i -v
Store a DICOM instance that does not have a study id
curl -H "Content-Type: multipart/related; type=\"application/dicom\"" -F "content=@IMAGE2.dcm; type=application/dicom" -X POST http://localhost:23133/api/stow/studies -i -v
Store a DICOM XML instance that does not have a study id
curl -H "Content-Type: multipart/related; type=\"application/dicom+xml\"" -F "content=@image2.xml; type=application/dicom+xml" -X POST
http://localhost:23133/api/stow/studies -i -v
Store a DICOM JSON instance that does not have a study id
curl -H "Content-Type: multipart/related; type=\"application/json\"" -F "content=@image2.json; type=application/json" -X POST http://localhost:23133/api/stow/studies -i -v
LEADTOOLS Medical WADO Web Service and Client Demo
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET