canton-api-client 3.6.0-0.1.0

Canton Ledger API rust client
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
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
# \DefaultApi

All URIs are relative to *http://localhost*

Method | HTTP request | Description
------------- | ------------- | -------------
[**delete_v2_idps_idp_id**](DefaultApi.md#delete_v2_idps_idp_id) | **DELETE** /v2/idps/{idp_id} | 
[**delete_v2_users_user_id**](DefaultApi.md#delete_v2_users_user_id) | **DELETE** /v2/users/{user_id} | 
[**get_livez**](DefaultApi.md#get_livez) | **GET** /livez | 
[**get_readyz**](DefaultApi.md#get_readyz) | **GET** /readyz | 
[**get_v2_authenticated_user**](DefaultApi.md#get_v2_authenticated_user) | **GET** /v2/authenticated-user | 
[**get_v2_idps**](DefaultApi.md#get_v2_idps) | **GET** /v2/idps | 
[**get_v2_idps_idp_id**](DefaultApi.md#get_v2_idps_idp_id) | **GET** /v2/idps/{idp_id} | 
[**get_v2_interactive_submission_preferred_package_version**](DefaultApi.md#get_v2_interactive_submission_preferred_package_version) | **GET** /v2/interactive-submission/preferred-package-version | 
[**get_v2_package_vetting**](DefaultApi.md#get_v2_package_vetting) | **GET** /v2/package-vetting | 
[**get_v2_packages**](DefaultApi.md#get_v2_packages) | **GET** /v2/packages | 
[**get_v2_packages_package_id**](DefaultApi.md#get_v2_packages_package_id) | **GET** /v2/packages/{package_id} | 
[**get_v2_packages_package_id_status**](DefaultApi.md#get_v2_packages_package_id_status) | **GET** /v2/packages/{package_id}/status | 
[**get_v2_parties**](DefaultApi.md#get_v2_parties) | **GET** /v2/parties | 
[**get_v2_parties_participant_id**](DefaultApi.md#get_v2_parties_participant_id) | **GET** /v2/parties/participant-id | 
[**get_v2_parties_party**](DefaultApi.md#get_v2_parties_party) | **GET** /v2/parties/{party} | 
[**get_v2_state_active_contracts_page**](DefaultApi.md#get_v2_state_active_contracts_page) | **GET** /v2/state/active-contracts-page | 
[**get_v2_state_connected_synchronizers**](DefaultApi.md#get_v2_state_connected_synchronizers) | **GET** /v2/state/connected-synchronizers | 
[**get_v2_state_latest_pruned_offsets**](DefaultApi.md#get_v2_state_latest_pruned_offsets) | **GET** /v2/state/latest-pruned-offsets | 
[**get_v2_state_ledger_end**](DefaultApi.md#get_v2_state_ledger_end) | **GET** /v2/state/ledger-end | 
[**get_v2_updates_transaction_tree_by_id_update_id**](DefaultApi.md#get_v2_updates_transaction_tree_by_id_update_id) | **GET** /v2/updates/transaction-tree-by-id/{update_id} | 
[**get_v2_updates_transaction_tree_by_offset_offset**](DefaultApi.md#get_v2_updates_transaction_tree_by_offset_offset) | **GET** /v2/updates/transaction-tree-by-offset/{offset} | 
[**get_v2_users**](DefaultApi.md#get_v2_users) | **GET** /v2/users | 
[**get_v2_users_user_id**](DefaultApi.md#get_v2_users_user_id) | **GET** /v2/users/{user_id} | 
[**get_v2_users_user_id_rights**](DefaultApi.md#get_v2_users_user_id_rights) | **GET** /v2/users/{user_id}/rights | 
[**get_v2_version**](DefaultApi.md#get_v2_version) | **GET** /v2/version | 
[**patch_v2_idps_idp_id**](DefaultApi.md#patch_v2_idps_idp_id) | **PATCH** /v2/idps/{idp_id} | 
[**patch_v2_parties_party**](DefaultApi.md#patch_v2_parties_party) | **PATCH** /v2/parties/{party} | 
[**patch_v2_users_user_id**](DefaultApi.md#patch_v2_users_user_id) | **PATCH** /v2/users/{user_id} | 
[**patch_v2_users_user_id_identity_provider_id**](DefaultApi.md#patch_v2_users_user_id_identity_provider_id) | **PATCH** /v2/users/{user_id}/identity-provider-id | 
[**patch_v2_users_user_id_rights**](DefaultApi.md#patch_v2_users_user_id_rights) | **PATCH** /v2/users/{user_id}/rights | 
[**post_v2_commands_async_submit**](DefaultApi.md#post_v2_commands_async_submit) | **POST** /v2/commands/async/submit | 
[**post_v2_commands_async_submit_reassignment**](DefaultApi.md#post_v2_commands_async_submit_reassignment) | **POST** /v2/commands/async/submit-reassignment | 
[**post_v2_commands_completions**](DefaultApi.md#post_v2_commands_completions) | **POST** /v2/commands/completions | 
[**post_v2_commands_submit_and_wait**](DefaultApi.md#post_v2_commands_submit_and_wait) | **POST** /v2/commands/submit-and-wait | 
[**post_v2_commands_submit_and_wait_for_reassignment**](DefaultApi.md#post_v2_commands_submit_and_wait_for_reassignment) | **POST** /v2/commands/submit-and-wait-for-reassignment | 
[**post_v2_commands_submit_and_wait_for_transaction**](DefaultApi.md#post_v2_commands_submit_and_wait_for_transaction) | **POST** /v2/commands/submit-and-wait-for-transaction | 
[**post_v2_commands_submit_and_wait_for_transaction_tree**](DefaultApi.md#post_v2_commands_submit_and_wait_for_transaction_tree) | **POST** /v2/commands/submit-and-wait-for-transaction-tree | 
[**post_v2_contracts_contract_by_id**](DefaultApi.md#post_v2_contracts_contract_by_id) | **POST** /v2/contracts/contract-by-id | 
[**post_v2_dars**](DefaultApi.md#post_v2_dars) | **POST** /v2/dars | 
[**post_v2_dars_validate**](DefaultApi.md#post_v2_dars_validate) | **POST** /v2/dars/validate | 
[**post_v2_events_events_by_contract_id**](DefaultApi.md#post_v2_events_events_by_contract_id) | **POST** /v2/events/events-by-contract-id | 
[**post_v2_idps**](DefaultApi.md#post_v2_idps) | **POST** /v2/idps | 
[**post_v2_interactive_submission_execute**](DefaultApi.md#post_v2_interactive_submission_execute) | **POST** /v2/interactive-submission/execute | 
[**post_v2_interactive_submission_executeandwait**](DefaultApi.md#post_v2_interactive_submission_executeandwait) | **POST** /v2/interactive-submission/executeAndWait | 
[**post_v2_interactive_submission_executeandwaitfortransaction**](DefaultApi.md#post_v2_interactive_submission_executeandwaitfortransaction) | **POST** /v2/interactive-submission/executeAndWaitForTransaction | 
[**post_v2_interactive_submission_preferred_packages**](DefaultApi.md#post_v2_interactive_submission_preferred_packages) | **POST** /v2/interactive-submission/preferred-packages | 
[**post_v2_interactive_submission_prepare**](DefaultApi.md#post_v2_interactive_submission_prepare) | **POST** /v2/interactive-submission/prepare | 
[**post_v2_package_vetting**](DefaultApi.md#post_v2_package_vetting) | **POST** /v2/package-vetting | 
[**post_v2_package_vetting_list**](DefaultApi.md#post_v2_package_vetting_list) | **POST** /v2/package-vetting/list | 
[**post_v2_package_vetting_update**](DefaultApi.md#post_v2_package_vetting_update) | **POST** /v2/package-vetting/update | 
[**post_v2_packages**](DefaultApi.md#post_v2_packages) | **POST** /v2/packages | 
[**post_v2_parties**](DefaultApi.md#post_v2_parties) | **POST** /v2/parties | 
[**post_v2_parties_external_allocate**](DefaultApi.md#post_v2_parties_external_allocate) | **POST** /v2/parties/external/allocate | 
[**post_v2_parties_external_generate_topology**](DefaultApi.md#post_v2_parties_external_generate_topology) | **POST** /v2/parties/external/generate-topology | 
[**post_v2_state_active_contracts**](DefaultApi.md#post_v2_state_active_contracts) | **POST** /v2/state/active-contracts | 
[**post_v2_updates**](DefaultApi.md#post_v2_updates) | **POST** /v2/updates | 
[**post_v2_updates_flats**](DefaultApi.md#post_v2_updates_flats) | **POST** /v2/updates/flats | 
[**post_v2_updates_get_updates_page**](DefaultApi.md#post_v2_updates_get_updates_page) | **POST** /v2/updates/get-updates-page | 
[**post_v2_updates_transaction_by_id**](DefaultApi.md#post_v2_updates_transaction_by_id) | **POST** /v2/updates/transaction-by-id | 
[**post_v2_updates_transaction_by_offset**](DefaultApi.md#post_v2_updates_transaction_by_offset) | **POST** /v2/updates/transaction-by-offset | 
[**post_v2_updates_trees**](DefaultApi.md#post_v2_updates_trees) | **POST** /v2/updates/trees | 
[**post_v2_updates_update_by_id**](DefaultApi.md#post_v2_updates_update_by_id) | **POST** /v2/updates/update-by-id | 
[**post_v2_updates_update_by_offset**](DefaultApi.md#post_v2_updates_update_by_offset) | **POST** /v2/updates/update-by-offset | 
[**post_v2_users**](DefaultApi.md#post_v2_users) | **POST** /v2/users | 
[**post_v2_users_user_id_rights**](DefaultApi.md#post_v2_users_user_id_rights) | **POST** /v2/users/{user_id}/rights | 



## delete_v2_idps_idp_id

> serde_json::Value delete_v2_idps_idp_id(idp_id)


Delete an existing identity provider configuration.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**idp_id** | **String** |  | [required] |

### Return type

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

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## delete_v2_users_user_id

> serde_json::Value delete_v2_users_user_id(user_id)


Delete an existing user and all its rights.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**user_id** | **String** |  | [required] |

### Return type

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

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_livez

> get_livez()


Checks if the service is alive

### Parameters

This endpoint does not need any parameter.

### Return type

 (empty response body)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: text/plain, 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)


## get_readyz

> String get_readyz()


Checks if the service is ready to serve requests

### Parameters

This endpoint does not need any parameter.

### Return type

**String**

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: text/plain, 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)


## get_v2_authenticated_user

> models::GetUserResponse get_v2_authenticated_user(identity_provider_id)


Get the user data of the current authenticated user.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**identity_provider_id** | Option<**String**> |  |  |

### Return type

[**models::GetUserResponse**](GetUserResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_idps

> models::ListIdentityProviderConfigsResponse get_v2_idps()


List all existing identity provider configurations.

### Parameters

This endpoint does not need any parameter.

### Return type

[**models::ListIdentityProviderConfigsResponse**](ListIdentityProviderConfigsResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_idps_idp_id

> models::GetIdentityProviderConfigResponse get_v2_idps_idp_id(idp_id)


Get the identity provider configuration data by id.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**idp_id** | **String** |  | [required] |

### Return type

[**models::GetIdentityProviderConfigResponse**](GetIdentityProviderConfigResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_interactive_submission_preferred_package_version

> models::GetPreferredPackageVersionResponse get_v2_interactive_submission_preferred_package_version(package_name, parties, vetting_valid_at, synchronizer_id)


A preferred package is the highest-versioned package for a provided package-name that is vetted by all the participants hosting the provided parties.  Ledger API clients should use this endpoint for constructing command submissions that are compatible with the provided preferred package, by making informed decisions on: - which are the compatible packages that can be used to create contracts - which contract or exercise choice argument version can be used in the command - which choices can be executed on a template or interface of a contract  Can be accessed by any Ledger API client with a valid token when Ledger API authorization is enabled.  Provided for backwards compatibility, it will be removed in the Canton version 3.4.0

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**package_name** | **String** |  | [required] |
**parties** | Option<[**Vec<String>**](String.md)> |  |  |
**vetting_valid_at** | Option<**chrono::DateTime<chrono::FixedOffset>**> |  |  |
**synchronizer_id** | Option<**String**> |  |  |

### Return type

[**models::GetPreferredPackageVersionResponse**](GetPreferredPackageVersionResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_package_vetting

> models::ListVettedPackagesResponse get_v2_package_vetting(list_vetted_packages_request)


Lists which participant node vetted what packages on which synchronizer. This endpoint (GET /package-vetting) is deprecated and will be removed in a future release. Please use POST /package-vetting/list instead.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**list_vetted_packages_request** | [**ListVettedPackagesRequest**](ListVettedPackagesRequest.md) |  | [required] |

### Return type

[**models::ListVettedPackagesResponse**](ListVettedPackagesResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## get_v2_packages

> models::ListPackagesResponse get_v2_packages()


Returns the identifiers of all supported packages.

### Parameters

This endpoint does not need any parameter.

### Return type

[**models::ListPackagesResponse**](ListPackagesResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_packages_package_id

> std::path::PathBuf get_v2_packages_package_id(package_id)


Returns the contents of a single package.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**package_id** | **String** |  | [required] |

### Return type

[**std::path::PathBuf**](std::path::PathBuf.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/octet-stream, text/plain, 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)


## get_v2_packages_package_id_status

> models::GetPackageStatusResponse get_v2_packages_package_id_status(package_id)


Returns the status of a single package.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**package_id** | **String** |  | [required] |

### Return type

[**models::GetPackageStatusResponse**](GetPackageStatusResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_parties

> models::ListKnownPartiesResponse get_v2_parties(identity_provider_id, filter_party, page_size, page_token)


List the parties known by the participant. The list returned contains parties whose ledger access is facilitated by the participant and the ones maintained elsewhere.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**identity_provider_id** | Option<**String**> |  |  |
**filter_party** | Option<**String**> |  |  |
**page_size** | Option<**i32**> | maximum number of elements in a returned page |  |
**page_token** | Option<**String**> | token - to continue results from a given page, leave empty to start from the beginning of the list, obtain token from the result of previous page |  |

### Return type

[**models::ListKnownPartiesResponse**](ListKnownPartiesResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_parties_participant_id

> models::GetParticipantIdResponse get_v2_parties_participant_id()


Return the identifier of the participant. All horizontally scaled replicas should return the same id. daml-on-kv-ledger: returns an identifier supplied on command line at launch time canton: returns globally unique identifier of the participant

### Parameters

This endpoint does not need any parameter.

### Return type

[**models::GetParticipantIdResponse**](GetParticipantIdResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_parties_party

> models::GetPartiesResponse get_v2_parties_party(party, identity_provider_id, parties)


Get the party details of the given parties. Only known parties will be returned in the list.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**party** | **String** |  | [required] |
**identity_provider_id** | Option<**String**> |  |  |
**parties** | Option<[**Vec<String>**](String.md)> |  |  |

### Return type

[**models::GetPartiesResponse**](GetPartiesResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_state_active_contracts_page

> models::JsGetActiveContractsPageResponse get_v2_state_active_contracts_page(get_active_contracts_page_request)


Returns a page of the snapshot of the active contracts and incomplete (un)assignments at a ledger offset. Once all pages are fetched by repeated calls to ``GetActiveContractsPage``, the client SHOULD begin retrieving updates from the update service, starting at the ``GetActiveContractsPageResponse``.``active_at_offset`` specified in this request. Clients SHOULD NOT assume that the set of active contracts they receive reflects the state at the ledger end.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**get_active_contracts_page_request** | [**GetActiveContractsPageRequest**](GetActiveContractsPageRequest.md) |  | [required] |

### Return type

[**models::JsGetActiveContractsPageResponse**](JsGetActiveContractsPageResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## get_v2_state_connected_synchronizers

> models::GetConnectedSynchronizersResponse get_v2_state_connected_synchronizers(party, participant_id, identity_provider_id)


Get the list of connected synchronizers at the time of the query.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**party** | Option<**String**> |  |  |
**participant_id** | Option<**String**> |  |  |
**identity_provider_id** | Option<**String**> |  |  |

### Return type

[**models::GetConnectedSynchronizersResponse**](GetConnectedSynchronizersResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_state_latest_pruned_offsets

> models::GetLatestPrunedOffsetsResponse get_v2_state_latest_pruned_offsets()


Get the latest successfully pruned ledger offsets

### Parameters

This endpoint does not need any parameter.

### Return type

[**models::GetLatestPrunedOffsetsResponse**](GetLatestPrunedOffsetsResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_state_ledger_end

> models::GetLedgerEndResponse get_v2_state_ledger_end()


Get the current ledger end. Subscriptions started with the returned offset will serve events after this RPC was called.

### Parameters

This endpoint does not need any parameter.

### Return type

[**models::GetLedgerEndResponse**](GetLedgerEndResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_updates_transaction_tree_by_id_update_id

> models::JsGetTransactionTreeResponse get_v2_updates_transaction_tree_by_id_update_id(update_id, parties)


Get transaction tree by id. Provided for backwards compatibility, it will be removed in the Canton version 3.5.0, use v2/updates/update-by-id instead.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**update_id** | **String** |  | [required] |
**parties** | Option<[**Vec<String>**](String.md)> |  |  |

### Return type

[**models::JsGetTransactionTreeResponse**](JsGetTransactionTreeResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_updates_transaction_tree_by_offset_offset

> models::JsGetTransactionTreeResponse get_v2_updates_transaction_tree_by_offset_offset(offset, parties)


Get transaction tree by offset. Provided for backwards compatibility, it will be removed in the Canton version 3.5.0, use v2/updates/update-by-offset instead.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**offset** | **i64** |  | [required] |
**parties** | Option<[**Vec<String>**](String.md)> |  |  |

### Return type

[**models::JsGetTransactionTreeResponse**](JsGetTransactionTreeResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_users

> models::ListUsersResponse get_v2_users(page_size, page_token)


List all existing users.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**page_size** | Option<**i32**> | maximum number of elements in a returned page |  |
**page_token** | Option<**String**> | token - to continue results from a given page, leave empty to start from the beginning of the list, obtain token from the result of previous page |  |

### Return type

[**models::ListUsersResponse**](ListUsersResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_users_user_id

> models::GetUserResponse get_v2_users_user_id(user_id, identity_provider_id)


Get the user data of a specific user or the authenticated user.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**user_id** | **String** |  | [required] |
**identity_provider_id** | Option<**String**> |  |  |

### Return type

[**models::GetUserResponse**](GetUserResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_users_user_id_rights

> models::ListUserRightsResponse get_v2_users_user_id_rights(user_id)


List the set of all rights granted to a user.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**user_id** | **String** |  | [required] |

### Return type

[**models::ListUserRightsResponse**](ListUserRightsResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## get_v2_version

> models::GetLedgerApiVersionResponse get_v2_version()


Read the Ledger API version

### Parameters

This endpoint does not need any parameter.

### Return type

[**models::GetLedgerApiVersionResponse**](GetLedgerApiVersionResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json, 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)


## patch_v2_idps_idp_id

> models::UpdateIdentityProviderConfigResponse patch_v2_idps_idp_id(idp_id, update_identity_provider_config_request)


Update selected modifiable attribute of an identity provider config resource described by the ``IdentityProviderConfig`` message.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**idp_id** | **String** |  | [required] |
**update_identity_provider_config_request** | [**UpdateIdentityProviderConfigRequest**](UpdateIdentityProviderConfigRequest.md) |  | [required] |

### Return type

[**models::UpdateIdentityProviderConfigResponse**](UpdateIdentityProviderConfigResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## patch_v2_parties_party

> models::UpdatePartyDetailsResponse patch_v2_parties_party(party, update_party_details_request)


Update selected modifiable participant-local attributes of a party details resource. Can update the participant's local information for local parties.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**party** | **String** |  | [required] |
**update_party_details_request** | [**UpdatePartyDetailsRequest**](UpdatePartyDetailsRequest.md) |  | [required] |

### Return type

[**models::UpdatePartyDetailsResponse**](UpdatePartyDetailsResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## patch_v2_users_user_id

> models::UpdateUserResponse patch_v2_users_user_id(user_id, update_user_request)


Update selected modifiable attribute of a user resource described by the ``User`` message.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**user_id** | **String** |  | [required] |
**update_user_request** | [**UpdateUserRequest**](UpdateUserRequest.md) |  | [required] |

### Return type

[**models::UpdateUserResponse**](UpdateUserResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## patch_v2_users_user_id_identity_provider_id

> serde_json::Value patch_v2_users_user_id_identity_provider_id(user_id, update_user_identity_provider_id_request)


Update the assignment of a user from one IDP to another.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**user_id** | **String** |  | [required] |
**update_user_identity_provider_id_request** | [**UpdateUserIdentityProviderIdRequest**](UpdateUserIdentityProviderIdRequest.md) |  | [required] |

### Return type

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

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## patch_v2_users_user_id_rights

> models::RevokeUserRightsResponse patch_v2_users_user_id_rights(user_id, revoke_user_rights_request)


Revoke rights from a user. Revoking rights does not affect the resource version of the corresponding user.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**user_id** | **String** |  | [required] |
**revoke_user_rights_request** | [**RevokeUserRightsRequest**](RevokeUserRightsRequest.md) |  | [required] |

### Return type

[**models::RevokeUserRightsResponse**](RevokeUserRightsResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_commands_async_submit

> serde_json::Value post_v2_commands_async_submit(js_commands)


Submit a single composite command.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**js_commands** | [**JsCommands**](JsCommands.md) |  | [required] |

### Return type

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

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_commands_async_submit_reassignment

> serde_json::Value post_v2_commands_async_submit_reassignment(submit_reassignment_request)


Submit a single reassignment.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**submit_reassignment_request** | [**SubmitReassignmentRequest**](SubmitReassignmentRequest.md) |  | [required] |

### Return type

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

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_commands_completions

> Vec<models::CompletionStreamResponse> post_v2_commands_completions(completion_stream_request, limit, stream_idle_timeout_ms)


Query completions list (blocking call)  Subscribe to command completion events. Notice: This endpoint should be used for small results set. When number of results exceeded node configuration limit (`http-list-max-elements-limit`) there will be an error (`413 Content Too Large`) returned. Increasing this limit may lead to performance issues and high memory consumption. Consider using websockets (asyncapi) for better efficiency with larger results.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**completion_stream_request** | [**CompletionStreamRequest**](CompletionStreamRequest.md) |  | [required] |
**limit** | Option<**i64**> | maximum number of elements to return, this param is ignored if is bigger than server setting |  |
**stream_idle_timeout_ms** | Option<**i64**> | timeout to complete and send result if no new elements are received (for open ended streams) |  |

### Return type

[**Vec<models::CompletionStreamResponse>**](CompletionStreamResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_commands_submit_and_wait

> models::SubmitAndWaitResponse post_v2_commands_submit_and_wait(js_commands)


Submits a single composite command and waits for its result. Propagates the gRPC error of failed submissions including Daml interpretation errors.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**js_commands** | [**JsCommands**](JsCommands.md) |  | [required] |

### Return type

[**models::SubmitAndWaitResponse**](SubmitAndWaitResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_commands_submit_and_wait_for_reassignment

> models::JsSubmitAndWaitForReassignmentResponse post_v2_commands_submit_and_wait_for_reassignment(submit_and_wait_for_reassignment_request)


Submits a single composite reassignment command, waits for its result, and returns the reassignment. Propagates the gRPC error of failed submission.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**submit_and_wait_for_reassignment_request** | [**SubmitAndWaitForReassignmentRequest**](SubmitAndWaitForReassignmentRequest.md) |  | [required] |

### Return type

[**models::JsSubmitAndWaitForReassignmentResponse**](JsSubmitAndWaitForReassignmentResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_commands_submit_and_wait_for_transaction

> models::JsSubmitAndWaitForTransactionResponse post_v2_commands_submit_and_wait_for_transaction(js_submit_and_wait_for_transaction_request)


Submits a single composite command, waits for its result, and returns the transaction. Propagates the gRPC error of failed submissions including Daml interpretation errors.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**js_submit_and_wait_for_transaction_request** | [**JsSubmitAndWaitForTransactionRequest**](JsSubmitAndWaitForTransactionRequest.md) |  | [required] |

### Return type

[**models::JsSubmitAndWaitForTransactionResponse**](JsSubmitAndWaitForTransactionResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_commands_submit_and_wait_for_transaction_tree

> models::JsSubmitAndWaitForTransactionTreeResponse post_v2_commands_submit_and_wait_for_transaction_tree(js_commands)


Submit a batch of commands and wait for the transaction trees response. Provided for backwards compatibility, it will be removed in the Canton version 3.5.0, use submit-and-wait-for-transaction instead.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**js_commands** | [**JsCommands**](JsCommands.md) |  | [required] |

### Return type

[**models::JsSubmitAndWaitForTransactionTreeResponse**](JsSubmitAndWaitForTransactionTreeResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_contracts_contract_by_id

> models::GetContractResponse post_v2_contracts_contract_by_id(get_contract_request)


Looking up contract data by contract ID. This endpoint is experimental / alpha, therefore no backwards compatibility is guaranteed. This endpoint must not be used to look up contracts which entered the participant via party replication or repair service.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**get_contract_request** | [**GetContractRequest**](GetContractRequest.md) |  | [required] |

### Return type

[**models::GetContractResponse**](GetContractResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_dars

> serde_json::Value post_v2_dars(body, vet_all_packages, synchronizer_id)


Upload a DAR to the participant node

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**body** | **std::path::PathBuf** |  | [required] |
**vet_all_packages** | Option<**bool**> |  |  |
**synchronizer_id** | Option<**String**> |  |  |

### Return type

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

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/octet-stream
- **Accept**: application/json, 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)


## post_v2_dars_validate

> post_v2_dars_validate(body, synchronizer_id)


Validates the DAR and checks the upgrade compatibility of the DAR's packages with the set of the already vetted packages on the target vetting synchronizer. See ValidateDarFileRequest for details regarding the target vetting synchronizer.  The operation has no effect on the state of the participant or the Canton ledger: the DAR payload and its packages are not persisted neither are the packages vetted.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**body** | **std::path::PathBuf** |  | [required] |
**synchronizer_id** | Option<**String**> |  |  |

### Return type

 (empty response body)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/octet-stream
- **Accept**: text/plain, 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)


## post_v2_events_events_by_contract_id

> models::JsGetEventsByContractIdResponse post_v2_events_events_by_contract_id(get_events_by_contract_id_request)


Get the create and the consuming exercise event for the contract with the provided ID. No events will be returned for contracts that have been pruned because they have already been archived before the latest pruning offset. If the contract cannot be found for the request, or all the contract-events are filtered, a CONTRACT_EVENTS_NOT_FOUND error will be raised.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**get_events_by_contract_id_request** | [**GetEventsByContractIdRequest**](GetEventsByContractIdRequest.md) |  | [required] |

### Return type

[**models::JsGetEventsByContractIdResponse**](JsGetEventsByContractIdResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_idps

> models::CreateIdentityProviderConfigResponse post_v2_idps(create_identity_provider_config_request)


Create a new identity provider configuration. The request will fail if the maximum allowed number of separate configurations is reached.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**create_identity_provider_config_request** | [**CreateIdentityProviderConfigRequest**](CreateIdentityProviderConfigRequest.md) |  | [required] |

### Return type

[**models::CreateIdentityProviderConfigResponse**](CreateIdentityProviderConfigResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_interactive_submission_execute

> serde_json::Value post_v2_interactive_submission_execute(js_execute_submission_request)


Execute a prepared submission _asynchronously_ on the ledger. Requires a signature of the transaction from the submitting external party.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**js_execute_submission_request** | [**JsExecuteSubmissionRequest**](JsExecuteSubmissionRequest.md) |  | [required] |

### Return type

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

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_interactive_submission_executeandwait

> models::ExecuteSubmissionAndWaitResponse post_v2_interactive_submission_executeandwait(js_execute_submission_and_wait_request)


Similar to ExecuteSubmission but _synchronously_ wait for the completion of the transaction IMPORTANT: Relying on the response from this endpoint requires trusting the Participant Node to be honest. A malicious node could make a successfully committed request appeared failed and vice versa

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**js_execute_submission_and_wait_request** | [**JsExecuteSubmissionAndWaitRequest**](JsExecuteSubmissionAndWaitRequest.md) |  | [required] |

### Return type

[**models::ExecuteSubmissionAndWaitResponse**](ExecuteSubmissionAndWaitResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_interactive_submission_executeandwaitfortransaction

> models::JsExecuteSubmissionAndWaitForTransactionResponse post_v2_interactive_submission_executeandwaitfortransaction(js_execute_submission_and_wait_for_transaction_request)


Similar to ExecuteSubmissionAndWait but additionally returns the transaction IMPORTANT: Relying on the response from this endpoint requires trusting the Participant Node to be honest. A malicious node could make a successfully committed request appear as failed and vice versa

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**js_execute_submission_and_wait_for_transaction_request** | [**JsExecuteSubmissionAndWaitForTransactionRequest**](JsExecuteSubmissionAndWaitForTransactionRequest.md) |  | [required] |

### Return type

[**models::JsExecuteSubmissionAndWaitForTransactionResponse**](JsExecuteSubmissionAndWaitForTransactionResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_interactive_submission_preferred_packages

> models::GetPreferredPackagesResponse post_v2_interactive_submission_preferred_packages(get_preferred_packages_request)


Compute the preferred packages for the vetting requirements in the request. A preferred package is the highest-versioned package for a provided package-name that is vetted by all the participants hosting the provided parties.  Ledger API clients should use this endpoint for constructing command submissions that are compatible with the provided preferred packages, by making informed decisions on: - which are the compatible packages that can be used to create contracts - which contract or exercise choice argument version can be used in the command - which choices can be executed on a template or interface of a contract  If the package preferences could not be computed due to no selection satisfying the requirements, a `FAILED_PRECONDITION` error will be returned.  Can be accessed by any Ledger API client with a valid token when Ledger API authorization is enabled.  Experimental API: this endpoint is not guaranteed to provide backwards compatibility in future releases

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**get_preferred_packages_request** | [**GetPreferredPackagesRequest**](GetPreferredPackagesRequest.md) |  | [required] |

### Return type

[**models::GetPreferredPackagesResponse**](GetPreferredPackagesResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_interactive_submission_prepare

> models::JsPrepareSubmissionResponse post_v2_interactive_submission_prepare(js_prepare_submission_request)


Requires `readAs` scope for the submitting party when LAPI User authorization is enabled

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**js_prepare_submission_request** | [**JsPrepareSubmissionRequest**](JsPrepareSubmissionRequest.md) |  | [required] |

### Return type

[**models::JsPrepareSubmissionResponse**](JsPrepareSubmissionResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_package_vetting

> models::UpdateVettedPackagesResponse post_v2_package_vetting(update_vetted_packages_request)


Update the vetted packages of this participant This endpoint (POST /package-vetting) is deprecated and will be removed in a future release. Please use POST /package-vetting/update instead.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**update_vetted_packages_request** | [**UpdateVettedPackagesRequest**](UpdateVettedPackagesRequest.md) |  | [required] |

### Return type

[**models::UpdateVettedPackagesResponse**](UpdateVettedPackagesResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_package_vetting_list

> models::ListVettedPackagesResponse post_v2_package_vetting_list(list_vetted_packages_request)


Lists which participant node vetted what packages on which synchronizer. Can be called by any authenticated user.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**list_vetted_packages_request** | [**ListVettedPackagesRequest**](ListVettedPackagesRequest.md) |  | [required] |

### Return type

[**models::ListVettedPackagesResponse**](ListVettedPackagesResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_package_vetting_update

> models::UpdateVettedPackagesResponse post_v2_package_vetting_update(update_vetted_packages_request)


Update the vetted packages of this participant

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**update_vetted_packages_request** | [**UpdateVettedPackagesRequest**](UpdateVettedPackagesRequest.md) |  | [required] |

### Return type

[**models::UpdateVettedPackagesResponse**](UpdateVettedPackagesResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_packages

> serde_json::Value post_v2_packages(body, vet_all_packages, synchronizer_id)


Behaves the same as /dars. This endpoint will be deprecated and removed in a future release. Upload a DAR file to the participant.  If vetting is enabled in the request, the DAR is checked for upgrade compatibility with the set of the already vetted packages on the target vetting synchronizer See UploadDarFileRequest for details regarding vetting and the target vetting synchronizer.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**body** | **std::path::PathBuf** |  | [required] |
**vet_all_packages** | Option<**bool**> |  |  |
**synchronizer_id** | Option<**String**> |  |  |

### Return type

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

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/octet-stream
- **Accept**: application/json, 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)


## post_v2_parties

> models::AllocatePartyResponse post_v2_parties(allocate_party_request)


Allocates a new party on a ledger and adds it to the set managed by the participant. Caller specifies a party identifier suggestion, the actual identifier allocated might be different and is implementation specific. Caller can specify party metadata that is stored locally on the participant. This call may:  - Succeed, in which case the actual allocated identifier is visible in   the response. - Respond with a gRPC error  daml-on-kv-ledger: suggestion's uniqueness is checked by the validators in the consensus layer and call rejected if the identifier is already present. canton: completely different globally unique identifier is allocated. Behind the scenes calls to an internal protocol are made. As that protocol is richer than the surface protocol, the arguments take implicit values The party identifier suggestion must be a valid party name. Party names are required to be non-empty US-ASCII strings built from letters, digits, space, colon, minus and underscore limited to 255 chars

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**allocate_party_request** | [**AllocatePartyRequest**](AllocatePartyRequest.md) |  | [required] |

### Return type

[**models::AllocatePartyResponse**](AllocatePartyResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_parties_external_allocate

> models::AllocateExternalPartyResponse post_v2_parties_external_allocate(allocate_external_party_request)


Alpha 3.3: Endpoint to allocate a new external party on a synchronizer  Expected to be stable in 3.5  The external party must be hosted (at least) on this node with either confirmation or observation permissions It can optionally be hosted on other nodes (then called a multi-hosted party). If hosted on additional nodes, explicit authorization of the hosting relationship must be performed on those nodes before the party can be used. Decentralized namespaces are supported but must be provided fully authorized by their owners. The individual owner namespace transactions can be submitted in the same call (fully authorized as well). In the simple case of a non-multi hosted, non-decentralized party, the RPC will return once the party is effectively allocated and ready to use, similarly to the AllocateParty behavior. For more complex scenarios applications may need to query the party status explicitly (only through the admin API as of now).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**allocate_external_party_request** | [**AllocateExternalPartyRequest**](AllocateExternalPartyRequest.md) |  | [required] |

### Return type

[**models::AllocateExternalPartyResponse**](AllocateExternalPartyResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_parties_external_generate_topology

> models::GenerateExternalPartyTopologyResponse post_v2_parties_external_generate_topology(generate_external_party_topology_request)


Alpha 3.3: Convenience endpoint to generate topology transactions for external signing  Expected to be stable in 3.5  You may use this endpoint to generate the common external topology transactions which can be signed externally and uploaded as part of the allocate party process  Note that this request will create a normal namespace using the same key for the identity as for signing. More elaborate schemes such as multi-signature or decentralized parties require you to construct the topology transactions yourself.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**generate_external_party_topology_request** | [**GenerateExternalPartyTopologyRequest**](GenerateExternalPartyTopologyRequest.md) |  | [required] |

### Return type

[**models::GenerateExternalPartyTopologyResponse**](GenerateExternalPartyTopologyResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_state_active_contracts

> Vec<models::JsGetActiveContractsResponse> post_v2_state_active_contracts(get_active_contracts_request, limit, stream_idle_timeout_ms)


Query active contracts list (blocking call). Querying active contracts is an expensive operation and if possible should not be repeated often. Consider querying active contracts initially (for a given offset) and then repeatedly call one of `/v2/updates/...`endpoints  to get subsequent modifications. You can also use websockets to get updates with better performance.  Returns a stream of the snapshot of the active contracts and incomplete (un)assignments at a ledger offset. Once the stream of GetActiveContractsResponses completes, the client SHOULD begin streaming updates from the update service, starting at the GetActiveContractsRequest.active_at_offset specified in this request. Clients SHOULD NOT assume that the set of active contracts they receive reflects the state at the ledger end.  Notice: This endpoint should be used for small results set. When number of results exceeded node configuration limit (`http-list-max-elements-limit`) there will be an error (`413 Content Too Large`) returned. Increasing this limit may lead to performance issues and high memory consumption. Consider using websockets (asyncapi) for better efficiency with larger results.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**get_active_contracts_request** | [**GetActiveContractsRequest**](GetActiveContractsRequest.md) |  | [required] |
**limit** | Option<**i64**> | maximum number of elements to return, this param is ignored if is bigger than server setting |  |
**stream_idle_timeout_ms** | Option<**i64**> | timeout to complete and send result if no new elements are received (for open ended streams) |  |

### Return type

[**Vec<models::JsGetActiveContractsResponse>**](JsGetActiveContractsResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_updates

> Vec<models::JsGetUpdatesResponse> post_v2_updates(get_updates_request, limit, stream_idle_timeout_ms)


Read the ledger's filtered update stream for the specified contents and filters. It returns the event types in accordance with the stream contents selected. Also the selection criteria for individual events depends on the transaction shape chosen.  - ACS delta: a requesting party must be a stakeholder of an event for it to be included. - ledger effects: a requesting party must be a witness of an event for it to be included. Notice: This endpoint should be used for small results set. When number of results exceeded node configuration limit (`http-list-max-elements-limit`) there will be an error (`413 Content Too Large`) returned. Increasing this limit may lead to performance issues and high memory consumption. Consider using websockets (asyncapi) for better efficiency with larger results.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**get_updates_request** | [**GetUpdatesRequest**](GetUpdatesRequest.md) |  | [required] |
**limit** | Option<**i64**> | maximum number of elements to return, this param is ignored if is bigger than server setting |  |
**stream_idle_timeout_ms** | Option<**i64**> | timeout to complete and send result if no new elements are received (for open ended streams) |  |

### Return type

[**Vec<models::JsGetUpdatesResponse>**](JsGetUpdatesResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_updates_flats

> Vec<models::JsGetUpdatesResponse> post_v2_updates_flats(get_updates_request, limit, stream_idle_timeout_ms)


Query flat transactions update list (blocking call). Provided for backwards compatibility, it will be removed in the Canton version 3.5.0, use v2/updates instead. Notice: This endpoint should be used for small results set. When number of results exceeded node configuration limit (`http-list-max-elements-limit`) there will be an error (`413 Content Too Large`) returned. Increasing this limit may lead to performance issues and high memory consumption. Consider using websockets (asyncapi) for better efficiency with larger results.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**get_updates_request** | [**GetUpdatesRequest**](GetUpdatesRequest.md) |  | [required] |
**limit** | Option<**i64**> | maximum number of elements to return, this param is ignored if is bigger than server setting |  |
**stream_idle_timeout_ms** | Option<**i64**> | timeout to complete and send result if no new elements are received (for open ended streams) |  |

### Return type

[**Vec<models::JsGetUpdatesResponse>**](JsGetUpdatesResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_updates_get_updates_page

> models::JsGetUpdatesPageResponse post_v2_updates_get_updates_page(get_updates_page_request)


Read a page of ledger's filtered updates. It returns the event types in accordance with the specified contents and filters. Additionally, the selection criteria for individual events depends on the transaction shape chosen.  - ACS delta: an event is included only if the requesting party is a stakeholder. - ledger effects: an event is included if the requesting party is a witness.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**get_updates_page_request** | [**GetUpdatesPageRequest**](GetUpdatesPageRequest.md) |  | [required] |

### Return type

[**models::JsGetUpdatesPageResponse**](JsGetUpdatesPageResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_updates_transaction_by_id

> models::JsGetTransactionResponse post_v2_updates_transaction_by_id(get_transaction_by_id_request)


Get transaction by id. Provided for backwards compatibility, it will be removed in the Canton version 3.5.0, use v2/updates/update-by-id instead.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**get_transaction_by_id_request** | [**GetTransactionByIdRequest**](GetTransactionByIdRequest.md) |  | [required] |

### Return type

[**models::JsGetTransactionResponse**](JsGetTransactionResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_updates_transaction_by_offset

> models::JsGetTransactionResponse post_v2_updates_transaction_by_offset(get_transaction_by_offset_request)


Get transaction by offset. Provided for backwards compatibility, it will be removed in the Canton version 3.5.0, use v2/updates/update-by-offset instead.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**get_transaction_by_offset_request** | [**GetTransactionByOffsetRequest**](GetTransactionByOffsetRequest.md) |  | [required] |

### Return type

[**models::JsGetTransactionResponse**](JsGetTransactionResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_updates_trees

> Vec<models::JsGetUpdateTreesResponse> post_v2_updates_trees(get_updates_request, limit, stream_idle_timeout_ms)


Query update transactions tree list (blocking call). Provided for backwards compatibility, it will be removed in the Canton version 3.5.0, use v2/updates instead. Notice: This endpoint should be used for small results set. When number of results exceeded node configuration limit (`http-list-max-elements-limit`) there will be an error (`413 Content Too Large`) returned. Increasing this limit may lead to performance issues and high memory consumption. Consider using websockets (asyncapi) for better efficiency with larger results.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**get_updates_request** | [**GetUpdatesRequest**](GetUpdatesRequest.md) |  | [required] |
**limit** | Option<**i64**> | maximum number of elements to return, this param is ignored if is bigger than server setting |  |
**stream_idle_timeout_ms** | Option<**i64**> | timeout to complete and send result if no new elements are received (for open ended streams) |  |

### Return type

[**Vec<models::JsGetUpdateTreesResponse>**](JsGetUpdateTreesResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_updates_update_by_id

> models::JsGetUpdateResponse post_v2_updates_update_by_id(get_update_by_id_request)


Lookup an update by its ID. If there is no update with this ID, or all the events are filtered, an UPDATE_NOT_FOUND error will be raised.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**get_update_by_id_request** | [**GetUpdateByIdRequest**](GetUpdateByIdRequest.md) |  | [required] |

### Return type

[**models::JsGetUpdateResponse**](JsGetUpdateResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_updates_update_by_offset

> models::JsGetUpdateResponse post_v2_updates_update_by_offset(get_update_by_offset_request)


Lookup an update by its offset. If there is no update with this offset, or all the events are filtered, an UPDATE_NOT_FOUND error will be raised.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**get_update_by_offset_request** | [**GetUpdateByOffsetRequest**](GetUpdateByOffsetRequest.md) |  | [required] |

### Return type

[**models::JsGetUpdateResponse**](JsGetUpdateResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_users

> models::CreateUserResponse post_v2_users(create_user_request)


Create a new user.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**create_user_request** | [**CreateUserRequest**](CreateUserRequest.md) |  | [required] |

### Return type

[**models::CreateUserResponse**](CreateUserResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)


## post_v2_users_user_id_rights

> models::GrantUserRightsResponse post_v2_users_user_id_rights(user_id, grant_user_rights_request)


Grant rights to a user. Granting rights does not affect the resource version of the corresponding user.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**user_id** | **String** |  | [required] |
**grant_user_rights_request** | [**GrantUserRightsRequest**](GrantUserRightsRequest.md) |  | [required] |

### Return type

[**models::GrantUserRightsResponse**](GrantUserRightsResponse.md)

### Authorization

[httpAuth](../README.md#httpAuth), [apiKeyAuth](../README.md#apiKeyAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json, 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)