orthanc_client_ogen 1.12.8

Orthanc API client library produced by OpenAPI Generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
# \NetworkingApi

All URIs are relative to *https://orthanc.uclouvain.be/demo*

Method | HTTP request | Description
------------- | ------------- | -------------
[**modalities_get**]NetworkingApi.md#modalities_get | **GET** /modalities | List DICOM modalities
[**modalities_id_configuration_get**]NetworkingApi.md#modalities_id_configuration_get | **GET** /modalities/{id}/configuration | Get modality configuration
[**modalities_id_delete**]NetworkingApi.md#modalities_id_delete | **DELETE** /modalities/{id} | Delete DICOM modality
[**modalities_id_echo_post**]NetworkingApi.md#modalities_id_echo_post | **POST** /modalities/{id}/echo | Trigger C-ECHO SCU
[**modalities_id_find_instance_post**]NetworkingApi.md#modalities_id_find_instance_post | **POST** /modalities/{id}/find-instance | C-FIND SCU for instances
[**modalities_id_find_patient_post**]NetworkingApi.md#modalities_id_find_patient_post | **POST** /modalities/{id}/find-patient | C-FIND SCU for patients
[**modalities_id_find_post**]NetworkingApi.md#modalities_id_find_post | **POST** /modalities/{id}/find | Hierarchical C-FIND SCU
[**modalities_id_find_series_post**]NetworkingApi.md#modalities_id_find_series_post | **POST** /modalities/{id}/find-series | C-FIND SCU for series
[**modalities_id_find_study_post**]NetworkingApi.md#modalities_id_find_study_post | **POST** /modalities/{id}/find-study | C-FIND SCU for studies
[**modalities_id_find_worklist_post**]NetworkingApi.md#modalities_id_find_worklist_post | **POST** /modalities/{id}/find-worklist | C-FIND SCU for worklist
[**modalities_id_get**]NetworkingApi.md#modalities_id_get | **GET** /modalities/{id} | List operations on modality
[**modalities_id_get_post**]NetworkingApi.md#modalities_id_get_post | **POST** /modalities/{id}/get | Trigger C-GET SCU
[**modalities_id_move_post**]NetworkingApi.md#modalities_id_move_post | **POST** /modalities/{id}/move | Trigger C-MOVE SCU
[**modalities_id_put**]NetworkingApi.md#modalities_id_put | **PUT** /modalities/{id} | Update DICOM modality
[**modalities_id_query_post**]NetworkingApi.md#modalities_id_query_post | **POST** /modalities/{id}/query | Trigger C-FIND SCU
[**modalities_id_storage_commitment_post**]NetworkingApi.md#modalities_id_storage_commitment_post | **POST** /modalities/{id}/storage-commitment | Trigger storage commitment request
[**modalities_id_store_post**]NetworkingApi.md#modalities_id_store_post | **POST** /modalities/{id}/store | Trigger C-STORE SCU
[**modalities_id_store_straight_post**]NetworkingApi.md#modalities_id_store_straight_post | **POST** /modalities/{id}/store-straight | Straight C-STORE SCU
[**peers_get**]NetworkingApi.md#peers_get | **GET** /peers | List Orthanc peers
[**peers_id_configuration_get**]NetworkingApi.md#peers_id_configuration_get | **GET** /peers/{id}/configuration | Get peer configuration
[**peers_id_delete**]NetworkingApi.md#peers_id_delete | **DELETE** /peers/{id} | Delete Orthanc peer
[**peers_id_get**]NetworkingApi.md#peers_id_get | **GET** /peers/{id} | List operations on peer
[**peers_id_put**]NetworkingApi.md#peers_id_put | **PUT** /peers/{id} | Update Orthanc peer
[**peers_id_store_post**]NetworkingApi.md#peers_id_store_post | **POST** /peers/{id}/store | Send to Orthanc peer
[**peers_id_store_straight_post**]NetworkingApi.md#peers_id_store_straight_post | **POST** /peers/{id}/store-straight | Straight store to peer
[**peers_id_system_get**]NetworkingApi.md#peers_id_system_get | **GET** /peers/{id}/system | Get peer system information
[**queries_get**]NetworkingApi.md#queries_get | **GET** /queries | List query/retrieve operations
[**queries_id_answers_get**]NetworkingApi.md#queries_id_answers_get | **GET** /queries/{id}/answers | List answers to a query
[**queries_id_answers_index_content_get**]NetworkingApi.md#queries_id_answers_index_content_get | **GET** /queries/{id}/answers/{index}/content | Get one answer
[**queries_id_answers_index_get**]NetworkingApi.md#queries_id_answers_index_get | **GET** /queries/{id}/answers/{index} | List operations on an answer
[**queries_id_answers_index_query_instances_post**]NetworkingApi.md#queries_id_answers_index_query_instances_post | **POST** /queries/{id}/answers/{index}/query-instances | Query the child instances of an answer
[**queries_id_answers_index_query_series_post**]NetworkingApi.md#queries_id_answers_index_query_series_post | **POST** /queries/{id}/answers/{index}/query-series | Query the child series of an answer
[**queries_id_answers_index_query_studies_post**]NetworkingApi.md#queries_id_answers_index_query_studies_post | **POST** /queries/{id}/answers/{index}/query-studies | Query the child studies of an answer
[**queries_id_answers_index_retrieve_post**]NetworkingApi.md#queries_id_answers_index_retrieve_post | **POST** /queries/{id}/answers/{index}/retrieve | Retrieve one answer with a C-MOVE or a C-GET SCU
[**queries_id_delete**]NetworkingApi.md#queries_id_delete | **DELETE** /queries/{id} | Delete a query
[**queries_id_get**]NetworkingApi.md#queries_id_get | **GET** /queries/{id} | List operations on a query
[**queries_id_level_get**]NetworkingApi.md#queries_id_level_get | **GET** /queries/{id}/level | Get level of original query
[**queries_id_modality_get**]NetworkingApi.md#queries_id_modality_get | **GET** /queries/{id}/modality | Get modality of original query
[**queries_id_query_get**]NetworkingApi.md#queries_id_query_get | **GET** /queries/{id}/query | Get original query arguments
[**queries_id_retrieve_post**]NetworkingApi.md#queries_id_retrieve_post | **POST** /queries/{id}/retrieve | Retrieve all answers with C-MOVE SCU
[**storage_commitment_id_get**]NetworkingApi.md#storage_commitment_id_get | **GET** /storage-commitment/{id} | Get storage commitment report
[**storage_commitment_id_remove_post**]NetworkingApi.md#storage_commitment_id_remove_post | **POST** /storage-commitment/{id}/remove | Remove after storage commitment



## modalities_get

> serde_json::Value modalities_get(expand)
List DICOM modalities

List all the DICOM modalities that are known to Orthanc. This corresponds either to the content of the `DicomModalities` configuration option, or to the information stored in the database if `DicomModalitiesInDatabase` is `true`.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**expand** | Option<**String**> | If present, retrieve detailed information about the individual DICOM modalities |  |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_configuration_get

> serde_json::Value modalities_id_configuration_get(id)
Get modality configuration

Get detailed information about the configuration of some DICOM modality

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_delete

> modalities_id_delete(id)
Delete DICOM modality

Delete one DICOM modality. This change is permanent iff. `DicomModalitiesInDatabase` is `true`, otherwise it is lost at the next restart of Orthanc.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the DICOM modality of interest | [required] |

### Return type

 (empty response body)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: Not defined

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_echo_post

> modalities_id_echo_post(id, modalities_id_echo_post_request)
Trigger C-ECHO SCU

Trigger C-ECHO SCU command against the DICOM modality whose identifier is provided in URL: https://orthanc.uclouvain.be/book/users/rest.html#performing-c-echo

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**modalities_id_echo_post_request** | Option<[**ModalitiesIdEchoPostRequest**]ModalitiesIdEchoPostRequest.md> |  |  |

### Return type

 (empty response body)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: Not defined

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_find_instance_post

> serde_json::Value modalities_id_find_instance_post(id, body)
C-FIND SCU for instances

Trigger C-FIND SCU command against the DICOM modality whose identifier is provided in URL, in order to find an instance. Deprecated in favor of `/modalities/{id}/query`.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**body** | Option<**serde_json::Value**> |  |  |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_find_patient_post

> serde_json::Value modalities_id_find_patient_post(id, body)
C-FIND SCU for patients

Trigger C-FIND SCU command against the DICOM modality whose identifier is provided in URL, in order to find a patient. Deprecated in favor of `/modalities/{id}/query`.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**body** | Option<**serde_json::Value**> |  |  |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_find_post

> serde_json::Value modalities_id_find_post(id, body)
Hierarchical C-FIND SCU

Trigger a sequence of C-FIND SCU commands against the DICOM modality whose identifier is provided in URL, in order to discover a hierarchy of matching patients/studies/series. Deprecated in favor of `/modalities/{id}/query`.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**body** | Option<**serde_json::Value**> |  |  |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_find_series_post

> serde_json::Value modalities_id_find_series_post(id, body)
C-FIND SCU for series

Trigger C-FIND SCU command against the DICOM modality whose identifier is provided in URL, in order to find a series. Deprecated in favor of `/modalities/{id}/query`.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**body** | Option<**serde_json::Value**> |  |  |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_find_study_post

> serde_json::Value modalities_id_find_study_post(id, body)
C-FIND SCU for studies

Trigger C-FIND SCU command against the DICOM modality whose identifier is provided in URL, in order to find a study. Deprecated in favor of `/modalities/{id}/query`.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**body** | Option<**serde_json::Value**> |  |  |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_find_worklist_post

> serde_json::Value modalities_id_find_worklist_post(id, modalities_id_find_worklist_post_request)
C-FIND SCU for worklist

Trigger C-FIND SCU command against the remote worklists of the DICOM modality whose identifier is provided in URL

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**modalities_id_find_worklist_post_request** | Option<[**ModalitiesIdFindWorklistPostRequest**]ModalitiesIdFindWorklistPostRequest.md> |  |  |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_get

> serde_json::Value modalities_id_get(id)
List operations on modality

List the operations that are available for a DICOM modality.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the DICOM modality of interest | [required] |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_get_post

> models::ModalitiesIdGetPost200Response modalities_id_get_post(id, modalities_id_get_post_request)
Trigger C-GET SCU

Start a C-GET SCU command as a job, in order to retrieve DICOM resources from a remote DICOM modality whose identifier is provided in the URL: 

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**modalities_id_get_post_request** | Option<[**ModalitiesIdGetPostRequest**]ModalitiesIdGetPostRequest.md> |  |  |

### Return type

[**models::ModalitiesIdGetPost200Response**](_modalities__id__get_post_200_response.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_move_post

> models::ModalitiesIdGetPost200Response modalities_id_move_post(id, modalities_id_move_post_request)
Trigger C-MOVE SCU

Start a C-MOVE SCU command as a job, in order to drive the execution of a sequence of C-STORE commands by some remote DICOM modality whose identifier is provided in the URL: https://orthanc.uclouvain.be/book/users/rest.html#performing-c-move

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**modalities_id_move_post_request** | Option<[**ModalitiesIdMovePostRequest**]ModalitiesIdMovePostRequest.md> |  |  |

### Return type

[**models::ModalitiesIdGetPost200Response**](_modalities__id__get_post_200_response.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_put

> modalities_id_put(id, modalities_id_put_request)
Update DICOM modality

Define a new DICOM modality, or update an existing one. This change is permanent iff. `DicomModalitiesInDatabase` is `true`, otherwise it is lost at the next restart of Orthanc.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the new/updated DICOM modality | [required] |
**modalities_id_put_request** | Option<[**ModalitiesIdPutRequest**]ModalitiesIdPutRequest.md> |  |  |

### Return type

 (empty response body)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: Not defined

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_query_post

> models::ModalitiesIdQueryPost200Response modalities_id_query_post(id, modalities_id_query_post_request)
Trigger C-FIND SCU

Trigger C-FIND SCU command against the DICOM modality whose identifier is provided in URL: https://orthanc.uclouvain.be/book/users/rest.html#performing-query-retrieve-c-find-and-find-with-rest

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**modalities_id_query_post_request** | Option<[**ModalitiesIdQueryPostRequest**]ModalitiesIdQueryPostRequest.md> |  |  |

### Return type

[**models::ModalitiesIdQueryPost200Response**](_modalities__id__query_post_200_response.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_storage_commitment_post

> models::ModalitiesIdStorageCommitmentPost200Response modalities_id_storage_commitment_post(id, modalities_id_storage_commitment_post_request)
Trigger storage commitment request

Trigger a storage commitment request to some remote DICOM modality whose identifier is provided in the URL: https://orthanc.uclouvain.be/book/users/storage-commitment.html#storage-commitment-scu

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**modalities_id_storage_commitment_post_request** | Option<[**ModalitiesIdStorageCommitmentPostRequest**]ModalitiesIdStorageCommitmentPostRequest.md> |  |  |

### Return type

[**models::ModalitiesIdStorageCommitmentPost200Response**](_modalities__id__storage_commitment_post_200_response.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_store_post

> models::ModalitiesIdGetPost200Response modalities_id_store_post(id, modalities_id_store_post_request)
Trigger C-STORE SCU

Start a C-STORE SCU command as a job, in order to send DICOM resources stored locally to some remote DICOM modality whose identifier is provided in the URL: https://orthanc.uclouvain.be/book/users/rest.html#rest-store-scu

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**modalities_id_store_post_request** | Option<[**ModalitiesIdStorePostRequest**]ModalitiesIdStorePostRequest.md> |  |  |

### Return type

[**models::ModalitiesIdGetPost200Response**](_modalities__id__get_post_200_response.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json, text/plain
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## modalities_id_store_straight_post

> models::ModalitiesIdStoreStraightPost200Response modalities_id_store_straight_post(id, body)
Straight C-STORE SCU

Synchronously send the DICOM instance in the POST body to the remote DICOM modality whose identifier is provided in URL, without having to first store it locally within Orthanc. This is an alternative to command-line tools such as `storescu` from DCMTK or dcm4che.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**body** | Option<**serde_json::Value**> |  |  |

### Return type

[**models::ModalitiesIdStoreStraightPost200Response**](_modalities__id__store_straight_post_200_response.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/dicom
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## peers_get

> serde_json::Value peers_get(expand)
List Orthanc peers

List all the Orthanc peers that are known to Orthanc. This corresponds either to the content of the `OrthancPeers` configuration option, or to the information stored in the database if `OrthancPeersInDatabase` is `true`.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**expand** | Option<**String**> | If present, retrieve detailed information about the individual Orthanc peers |  |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## peers_id_configuration_get

> serde_json::Value peers_id_configuration_get(id)
Get peer configuration

Get detailed information about the configuration of some Orthanc peer

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the peer of interest | [required] |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## peers_id_delete

> peers_id_delete(id)
Delete Orthanc peer

Delete one Orthanc peer. This change is permanent iff. `OrthancPeersInDatabase` is `true`, otherwise it is lost at the next restart of Orthanc.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the Orthanc peer of interest | [required] |

### Return type

 (empty response body)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: Not defined

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## peers_id_get

> serde_json::Value peers_id_get(id)
List operations on peer

List the operations that are available for an Orthanc peer.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the peer of interest | [required] |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## peers_id_put

> peers_id_put(id, peers_id_put_request)
Update Orthanc peer

Define a new Orthanc peer, or update an existing one. This change is permanent iff. `OrthancPeersInDatabase` is `true`, otherwise it is lost at the next restart of Orthanc.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the new/updated Orthanc peer | [required] |
**peers_id_put_request** | Option<[**PeersIdPutRequest**]PeersIdPutRequest.md> |  |  |

### Return type

 (empty response body)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: Not defined

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## peers_id_store_post

> models::ModalitiesIdGetPost200Response peers_id_store_post(id, peers_id_store_post_request)
Send to Orthanc peer

Send DICOM resources stored locally to some remote Orthanc peer whose identifier is provided in the URL: https://orthanc.uclouvain.be/book/users/rest.html#sending-one-resource

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**peers_id_store_post_request** | Option<[**PeersIdStorePostRequest**]PeersIdStorePostRequest.md> |  |  |

### Return type

[**models::ModalitiesIdGetPost200Response**](_modalities__id__get_post_200_response.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json, text/plain
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## peers_id_store_straight_post

> models::PeersIdStoreStraightPost200Response peers_id_store_straight_post(id, body)
Straight store to peer

Synchronously send the DICOM instance in the POST body to the Orthanc peer whose identifier is provided in URL, without having to first store it locally within Orthanc. This is an alternative to command-line tools such as `curl`.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the modality of interest | [required] |
**body** | Option<**serde_json::Value**> |  |  |

### Return type

[**models::PeersIdStoreStraightPost200Response**](_peers__id__store_straight_post_200_response.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/dicom
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## peers_id_system_get

> serde_json::Value peers_id_system_get(id)
Get peer system information

Get system information about some Orthanc peer. This corresponds to doing a `GET` request against the `/system` URI of the remote peer. This route can be used to test connectivity.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the peer of interest | [required] |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## queries_get

> serde_json::Value queries_get()
List query/retrieve operations

List the identifiers of all the query/retrieve operations on DICOM modalities, as initiated by calls to `/modalities/{id}/query`. The length of this list is bounded by the `QueryRetrieveSize` configuration option of Orthanc. https://orthanc.uclouvain.be/book/users/rest.html#performing-query-retrieve-c-find-and-find-with-rest

### Parameters

This endpoint does not need any parameter.

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## queries_id_answers_get

> serde_json::Value queries_id_answers_get(id, expand, short, simplify)
List answers to a query

List the indices of all the available answers resulting from a query/retrieve operation on some DICOM modality, whose identifier is provided in the URL

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the query of interest | [required] |
**expand** | Option<**String**> | If present, retrieve detailed information about the individual answers |  |
**short** | Option<**bool**> | If present, report the DICOM tags in hexadecimal format |  |
**simplify** | Option<**bool**> | If present, report the DICOM tags in human-readable format (using the symbolic name of the tags) |  |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## queries_id_answers_index_content_get

> serde_json::Value queries_id_answers_index_content_get(id, index, short, simplify)
Get one answer

Get the content (DICOM tags) of one answer associated with the query/retrieve operation whose identifier is provided in the URL

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the query of interest | [required] |
**index** | **String** | Index of the answer | [required] |
**short** | Option<**bool**> | If present, report the DICOM tags in hexadecimal format |  |
**simplify** | Option<**bool**> | If present, report the DICOM tags in human-readable format (using the symbolic name of the tags) |  |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## queries_id_answers_index_get

> serde_json::Value queries_id_answers_index_get(id, index)
List operations on an answer

List the available operations on an answer associated with the query/retrieve operation whose identifier is provided in the URL

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the query of interest | [required] |
**index** | **String** | Index of the answer | [required] |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## queries_id_answers_index_query_instances_post

> models::ModalitiesIdQueryPost200Response queries_id_answers_index_query_instances_post(id, index, queries_id_answers_index_query_instances_post_request)
Query the child instances of an answer

Issue a second DICOM C-FIND operation, in order to query the child instances associated with one answer to some query/retrieve operation whose identifiers are provided in the URL

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the query of interest | [required] |
**index** | **String** | Index of the answer | [required] |
**queries_id_answers_index_query_instances_post_request** | Option<[**QueriesIdAnswersIndexQueryInstancesPostRequest**]QueriesIdAnswersIndexQueryInstancesPostRequest.md> |  |  |

### Return type

[**models::ModalitiesIdQueryPost200Response**](_modalities__id__query_post_200_response.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## queries_id_answers_index_query_series_post

> models::ModalitiesIdQueryPost200Response queries_id_answers_index_query_series_post(id, index, queries_id_answers_index_query_instances_post_request)
Query the child series of an answer

Issue a second DICOM C-FIND operation, in order to query the child series associated with one answer to some query/retrieve operation whose identifiers are provided in the URL

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the query of interest | [required] |
**index** | **String** | Index of the answer | [required] |
**queries_id_answers_index_query_instances_post_request** | Option<[**QueriesIdAnswersIndexQueryInstancesPostRequest**]QueriesIdAnswersIndexQueryInstancesPostRequest.md> |  |  |

### Return type

[**models::ModalitiesIdQueryPost200Response**](_modalities__id__query_post_200_response.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## queries_id_answers_index_query_studies_post

> models::ModalitiesIdQueryPost200Response queries_id_answers_index_query_studies_post(id, index, queries_id_answers_index_query_instances_post_request)
Query the child studies of an answer

Issue a second DICOM C-FIND operation, in order to query the child studies associated with one answer to some query/retrieve operation whose identifiers are provided in the URL

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the query of interest | [required] |
**index** | **String** | Index of the answer | [required] |
**queries_id_answers_index_query_instances_post_request** | Option<[**QueriesIdAnswersIndexQueryInstancesPostRequest**]QueriesIdAnswersIndexQueryInstancesPostRequest.md> |  |  |

### Return type

[**models::ModalitiesIdQueryPost200Response**](_modalities__id__query_post_200_response.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## queries_id_answers_index_retrieve_post

> models::ModalitiesIdGetPost200Response queries_id_answers_index_retrieve_post(id, index, queries_id_answers_index_retrieve_post_request)
Retrieve one answer with a C-MOVE or a C-GET SCU

Start a C-MOVE or a C-GET SCU command as a job, in order to retrieve one answer associated with the query/retrieve operation whose identifiers are provided in the URL: https://orthanc.uclouvain.be/book/users/rest.html#performing-retrieve-c-move

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the query of interest | [required] |
**index** | **String** | Index of the answer | [required] |
**queries_id_answers_index_retrieve_post_request** | Option<[**QueriesIdAnswersIndexRetrievePostRequest**]QueriesIdAnswersIndexRetrievePostRequest.md> |  |  |

### Return type

[**models::ModalitiesIdGetPost200Response**](_modalities__id__get_post_200_response.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json, text/plain
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## queries_id_delete

> queries_id_delete(id)
Delete a query

Delete the query/retrieve operation whose identifier is provided in the URL

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the query of interest | [required] |

### Return type

 (empty response body)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: Not defined

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## queries_id_get

> serde_json::Value queries_id_get(id)
List operations on a query

List the available operations for the query/retrieve operation whose identifier is provided in the URL

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the query of interest | [required] |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## queries_id_level_get

> serde_json::Value queries_id_level_get(id)
Get level of original query

Get the query level (value of the `QueryRetrieveLevel` tag) of the query/retrieve operation whose identifier is provided in the URL

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the query of interest | [required] |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: text/plain

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## queries_id_modality_get

> serde_json::Value queries_id_modality_get(id)
Get modality of original query

Get the identifier of the DICOM modality that was targeted by the query/retrieve operation whose identifier is provided in the URL

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the query of interest | [required] |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: text/plain

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## queries_id_query_get

> serde_json::Value queries_id_query_get(id, short, simplify)
Get original query arguments

Get the original DICOM filter associated with the query/retrieve operation whose identifier is provided in the URL

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the query of interest | [required] |
**short** | Option<**bool**> | If present, report the DICOM tags in hexadecimal format |  |
**simplify** | Option<**bool**> | If present, report the DICOM tags in human-readable format (using the symbolic name of the tags) |  |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## queries_id_retrieve_post

> models::ModalitiesIdGetPost200Response queries_id_retrieve_post(id, queries_id_answers_index_retrieve_post_request)
Retrieve all answers with C-MOVE SCU

Start a C-MOVE SCU command as a job, in order to retrieve all the answers associated with the query/retrieve operation whose identifier is provided in the URL: https://orthanc.uclouvain.be/book/users/rest.html#performing-retrieve-c-move

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the query of interest | [required] |
**queries_id_answers_index_retrieve_post_request** | Option<[**QueriesIdAnswersIndexRetrievePostRequest**]QueriesIdAnswersIndexRetrievePostRequest.md> |  |  |

### Return type

[**models::ModalitiesIdGetPost200Response**](_modalities__id__get_post_200_response.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json, text/plain
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## storage_commitment_id_get

> models::StorageCommitmentIdGet200Response storage_commitment_id_get(id)
Get storage commitment report

Get the storage commitment report whose identifier is provided in the URL: https://orthanc.uclouvain.be/book/users/storage-commitment.html#storage-commitment-scu

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the storage commitment report | [required] |

### Return type

[**models::StorageCommitmentIdGet200Response**](_storage_commitment__id__get_200_response.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## storage_commitment_id_remove_post

> storage_commitment_id_remove_post(id)
Remove after storage commitment

Remove out of Orthanc, the DICOM instances that have been reported to have been properly received the storage commitment report whose identifier is provided in the URL. This is only possible if the `Status` of the storage commitment report is `Success`. https://orthanc.uclouvain.be/book/users/storage-commitment.html#removing-the-instances

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | Identifier of the storage commitment report | [required] |

### Return type

 (empty response body)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: Not defined

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)