You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `dicomweb/` endpoint implements the specifications defined in section [6.6 STOW-RS Request/Response](https://dicom.nema.org/dicom/2013/output/chtml/part18/sect_6.6.html#sect_6.6.1.3.2.1.1) defined by the DICOM committee to provide the [DICOMWeb STOW-RS](https://www.dicomstandard.org/using/dicomweb/store-stow-rs) interface to enable the triggering of new workflows.
8
+
The `dicomweb/` endpoint implements the specifications defined in [section 6.6 STOW-RS Request/Response](https://dicom.nema.org/dicom/2013/output/chtml/part18/sect_6.6.html#sect_6.6.1.3.2.1.1)
9
+
defined by the DICOM committee to provide the [DICOMWeb STOW-RS](https://www.dicomstandard.org/using/dicomweb/store-stow-rs)
10
+
interface for triggering new workflows.
9
11
10
12
11
-
The *STOW-RS* service provides the following two endpoints:
13
+
The *STOW-RS* service provides the following two endpoints.
12
14
13
15
## POST /dicomweb/studies/[{study-instance-uid}]
14
16
15
17
Triggers a new workflow request with the uploaded DICOM dataset.
16
18
17
19
> [!IMPORTANT]
18
-
> Each HTTP POST request triggers a new workflow request; the service *does not* support waiting for additional instances like the DIMSE service.
20
+
> Each HTTP POST request triggers a new workflow request; the service *does not* support waiting
| study-instance-uid | string |Optionally associate the DICOM dataset with a StudyInstanceUID. Note: the service records any mismatch in the StudyInstanceUID header to the provided value in the response with`Warning Reason (0008,1196)` = `B007`. |
29
+
| study-instance-uid | string |(Optional) Associate the DICOM dataset with a StudyInstanceUID. Note that the service records any mismatch between the StudyInstanceUID header and the provided value in the response as`Warning Reason (0008,1196)` = `B007`.|
| 200 |[DicomDataset](https://github.com/fo-dicom/fo-dicom/blob/development/FO-DICOM.Core/DicomDataset.cs)| All instances are received and stored succesfully. |
42
-
| 202 |[DicomDataset](https://github.com/fo-dicom/fo-dicom/blob/development/FO-DICOM.Core/DicomDataset.cs)|ALl instances are received and stored with warnings. E.g. mismatch StudyInstanceUID. |
| 200 |[DicomDataset](https://github.com/fo-dicom/fo-dicom/blob/development/FO-DICOM.Core/DicomDataset.cs)| All instances are received and stored succesfully. |
45
+
| 202 |[DicomDataset](https://github.com/fo-dicom/fo-dicom/blob/development/FO-DICOM.Core/DicomDataset.cs)|All instances are received and stored with warnings (e.g. for a mismatched StudyInstanceUID. |
| workflow-id | string | The unique identifier of the workflow registered with the Workflow Manager. |
65
-
| study-instance-uid | string |Optionally associate the DICOM dataset with a StudyInstanceUID. Note: the service records any mismatch in the StudyInstanceUID header to the provided value in the response with`Warning Reason (0008,1196)` = `B007`. |
68
+
| study-instance-uid | string |(Optional) Associate the DICOM dataset with a StudyInstanceUID. Note that the service records any mismatch between the StudyInstanceUID header and the provided value in the response as`Warning Reason (0008,1196)` = `B007`. |
| 200 |[DicomDataset](https://github.com/fo-dicom/fo-dicom/blob/development/FO-DICOM.Core/DicomDataset.cs)| All instances are received and stored succesfully. |
81
-
| 202 |[DicomDataset](https://github.com/fo-dicom/fo-dicom/blob/development/FO-DICOM.Core/DicomDataset.cs)|ALl instances are received and stored with warnings. E.g. mismatch StudyInstanceUID. |
| 200 |[DicomDataset](https://github.com/fo-dicom/fo-dicom/blob/development/FO-DICOM.Core/DicomDataset.cs)| All instances are received and stored succesfully. |
84
+
| 202 |[DicomDataset](https://github.com/fo-dicom/fo-dicom/blob/development/FO-DICOM.Core/DicomDataset.cs)|All instances are received and stored with warnings (e.g. for a mismatched StudyInstanceUID. |
Copy file name to clipboardExpand all lines: docs/index.md
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -44,12 +44,19 @@ The *DICOM SCU Service* enables users to export application-generated DICOM resu
44
44
45
45
### DICOMWeb STOW-RS
46
46
47
-
The *DICOMWeb STOW-RS* allows users to trigger a new workflow request by uploading a DICOM dataset. It provides options to trigger a workflow with or without specifying a workflow ID/name. See [DICOMWeb STOW-RS](./api/rest/dicomweb-stow.md) section for more information.
47
+
The *DICOMWeb STOW-RS Service* allows users to trigger a new workflow request by uploading a DICOM dataset.
48
+
It provides options to trigger a workflow with or without specifying a workflow ID/name. See the
49
+
[DICOMWeb STOW-RS](./api/rest/dicomweb-stow.md) section for more information.
48
50
49
51
### ACR DSI API
50
52
51
-
The ACR DSI API allows users to trigger inference requests via RESTful calls, utilizing DICOMweb & FHIR to retrieve data specified in the request. Upon data retrieval, the Informatics Gateway uploads the data to the shared storage and generates an `md.workflow.request` event, which notifies the [MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager) for processing.
53
+
The ACR DSI API allows users to trigger inference requests via RESTful calls, utilizing DICOMweb and FHIR to
54
+
retrieve data specified in the request. Upon data retrieval, the Informatics Gateway uploads the data to the
55
+
shared storage and generates an `md.workflow.request` event, which notifies the
56
+
[MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager) for processing.
52
57
53
58
#### DICOMweb Export
54
59
55
-
A DICOMweb export agent can export any user-generated DICOM content to configured DICOM destinations. The agent subscribes to the `md.export.request.monaidicomweb` events generated by the [MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager) and then exports the data to user-configured DICOMweb destination(s).
60
+
A DICOMweb export agent can export any user-generated DICOM content to configured DICOM destinations. The agent
61
+
subscribes to the `md.export.request.monaidicomweb` events generated by the [MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager)
62
+
and then exports the data to user-configured DICOMweb destination(s).
The CLI provides three commands to configure the listening AE Titles, sources and destinations. Each command allows you to add (`add`), delete (`rm`) and list (`list`) configured AE Titles. Use the `-h` switch for additional options.
98
+
The CLI provides commands to configure the listening, source, and destination AE Titles. Each
99
+
command allows you to add (`add`), delete (`rm`), and list (`list`) configured AE Titles. Use the
0 commit comments