@@ -85,7 +85,7 @@ Response Content Type: JSON - [MonaiApplicationEntity](xref:Monai.Deploy.Informa
85
85
| Code | Description |
86
86
| ---- | --------------------------------------------------------------------------------------------------------------------------------------- |
87
87
| 200 | Configuration retrieved successfully. |
88
- | 404 | Configuration Titles not found. |
88
+ | 404 | Named AE not found. |
89
89
| 500 | Server error. The response will be a [ Problem details] ( https://datatracker.ietf.org/doc/html/rfc7807 ) object with server error details. |
90
90
91
91
### Example Request
@@ -185,7 +185,7 @@ Response Content Type: JSON - [MonaiApplicationEntity](xref:Monai.Deploy.Informa
185
185
| Code | Description |
186
186
| ---- | ---------------------------------------------------------------------------------------------------------------------------------------- |
187
187
| 200 | AE Title deleted. |
188
- | 404 | AE Title not found. |
188
+ | 404 | Named MONAI AE not found. |
189
189
| 500 | Server error. The response will be a [ Problem details] ( https://datatracker.ietf.org/doc/html/rfc7807 ) object with server error details. |
190
190
191
191
### Example Request
@@ -265,7 +265,7 @@ Response Content Type: JSON - [SourceApplicationEntity](xref:Monai.Deploy.Inform
265
265
| Code | Description |
266
266
| ---- | --------------------------------------------------------------------------------------------------------------------------------------- |
267
267
| 200 | AE Titles retrieved successfully. |
268
- | 404 | AE Titles not found. |
268
+ | 404 | Named source not found. |
269
269
| 500 | Server error. The response will be a [ Problem details] ( https://datatracker.ietf.org/doc/html/rfc7807 ) object with server error details. |
270
270
271
271
### Example Request
@@ -347,7 +347,7 @@ Response Content Type: JSON - [SourceApplicationEntity](xref:Monai.Deploy.Inform
347
347
| Code | Description |
348
348
| ---- | --------------------------------------------------------------------------------------------------------------------------------------- |
349
349
| 200 | AE Title deleted. |
350
- | 404 | AE Title not found. |
350
+ | 404 | Named source not found. |
351
351
| 500 | Server error. The response will be a [ Problem details] ( https://datatracker.ietf.org/doc/html/rfc7807 ) object with server error details. |
352
352
353
353
### Example Request
@@ -451,6 +451,34 @@ curl --location --request GET 'http://localhost:5000/config/destination/USEAST'
451
451
452
452
---
453
453
454
+ ## GET /config/destination/cecho/{name}
455
+
456
+ Performs a DICOM C-Echo request to the named destination on behalf of ` MONAISCU ` .
457
+
458
+ ### Parameters
459
+
460
+ | Name | Type | Description |
461
+ | ---- | ------ | ----------------------------------------- |
462
+ | name | string | The _ name_ of the AE Title to be deleted. |
463
+
464
+ ### Responses
465
+
466
+
467
+ | Code | Description |
468
+ | ---- | ----------------------------------------------------------------------------------------------------------------------------------------- |
469
+ | 200 | C-ECHO performed successfully. |
470
+ | 404 | Named destination not found. |
471
+ | 500 | Server error. The response will be a [ Problem details] ( https://datatracker.ietf.org/doc/html/rfc7807 ) object with server error details. |
472
+ | 502 | C-ECHO failure. The response will be a [ Problem details] ( https://datatracker.ietf.org/doc/html/rfc7807 ) object with server error details. |
473
+
474
+ ### Example Request
475
+
476
+ ``` bash
477
+ curl --location --request DELETE ' http://localhost:5000/config/destination/cecho/USEAST'
478
+ ```
479
+
480
+ ---
481
+
454
482
## POST /config/destination
455
483
456
484
Adds a new DICOM destination AET for exporting results to.
@@ -513,13 +541,13 @@ Response Content Type: JSON - [DestinationApplicationEntity](xref:Monai.Deploy.I
513
541
| Code | Description |
514
542
| ---- | --------------------------------------------------------------------------------------------------------------------------------------- |
515
543
| 200 | AE Title deleted. |
516
- | 404 | AE Title not found. |
544
+ | 404 | Named destination not found. |
517
545
| 500 | Server error. The response will be a [ Problem details] ( https://datatracker.ietf.org/doc/html/rfc7807 ) object with server error details. |
518
546
519
547
### Example Request
520
548
521
549
``` bash
522
- curl --location --request DELETE ' http://localhost:5000/config/ae /USEAST'
550
+ curl --location --request DELETE ' http://localhost:5000/config/destination /USEAST'
523
551
```
524
552
525
553
### Example Response
0 commit comments