In This Topic ▼

LEADTOOLS DICOMweb STOW RS

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

DICOM PS3.18 2015c: 6.6 STOW-RS Request/Response

Samples

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:

  1. 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

  2. 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

  3. 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 

  4. 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

See Also

LEADTOOLS DICOMweb

LEADTOOLS DICOMweb WADO RS

Help Version 21.0.2021.11.1
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Imaging, Medical, and Document

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.