camunda-client 0.1.2

Rust client for camunda Rest API
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
# \ProcessDefinitionApi

All URIs are relative to *http://localhost:8080/engine-rest*

Method | HTTP request | Description
------------- | ------------- | -------------
[**delete_process_definition**](ProcessDefinitionApi.md#delete_process_definition) | **delete** /process-definition/{id} | Delete
[**delete_process_definitions_by_key**](ProcessDefinitionApi.md#delete_process_definitions_by_key) | **delete** /process-definition/key/{key} | Delete By Key
[**delete_process_definitions_by_key_and_tenant_id**](ProcessDefinitionApi.md#delete_process_definitions_by_key_and_tenant_id) | **delete** /process-definition/key/{key}/tenant/{tenant-id} | Delete By Key
[**get_activity_statistics**](ProcessDefinitionApi.md#get_activity_statistics) | **get** /process-definition/{id}/statistics | Get Activity Instance Statistics
[**get_activity_statistics_by_process_definition_key**](ProcessDefinitionApi.md#get_activity_statistics_by_process_definition_key) | **get** /process-definition/key/{key}/statistics | Get Activity Instance Statistics
[**get_activity_statistics_by_process_definition_key_and_tenant_id**](ProcessDefinitionApi.md#get_activity_statistics_by_process_definition_key_and_tenant_id) | **get** /process-definition/key/{key}/tenant/{tenant-id}/statistics | Get Activity Instance Statistics
[**get_deployed_start_form**](ProcessDefinitionApi.md#get_deployed_start_form) | **get** /process-definition/{id}/deployed-start-form | Get Deployed Start Form
[**get_deployed_start_form_by_key**](ProcessDefinitionApi.md#get_deployed_start_form_by_key) | **get** /process-definition/key/{key}/deployed-start-form | Get Deployed Start Form
[**get_deployed_start_form_by_key_and_tenant_id**](ProcessDefinitionApi.md#get_deployed_start_form_by_key_and_tenant_id) | **get** /process-definition/key/{key}/tenant/{tenant-id}/deployed-start-form | Get Deployed Start Form
[**get_latest_process_definition_by_tenant_id**](ProcessDefinitionApi.md#get_latest_process_definition_by_tenant_id) | **get** /process-definition/key/{key}/tenant/{tenant-id} | Get
[**get_process_definition**](ProcessDefinitionApi.md#get_process_definition) | **get** /process-definition/{id} | Get
[**get_process_definition_bpmn20_xml**](ProcessDefinitionApi.md#get_process_definition_bpmn20_xml) | **get** /process-definition/{id}/xml | Get XML
[**get_process_definition_bpmn20_xml_by_key**](ProcessDefinitionApi.md#get_process_definition_bpmn20_xml_by_key) | **get** /process-definition/key/{key}/xml | Get XML
[**get_process_definition_bpmn20_xml_by_key_and_tenant_id**](ProcessDefinitionApi.md#get_process_definition_bpmn20_xml_by_key_and_tenant_id) | **get** /process-definition/key/{key}/tenant/{tenant-id}/xml | Get XML
[**get_process_definition_by_key**](ProcessDefinitionApi.md#get_process_definition_by_key) | **get** /process-definition/key/{key} | Get
[**get_process_definition_diagram**](ProcessDefinitionApi.md#get_process_definition_diagram) | **get** /process-definition/{id}/diagram | Get Diagram
[**get_process_definition_diagram_by_key**](ProcessDefinitionApi.md#get_process_definition_diagram_by_key) | **get** /process-definition/key/{key}/diagram | Get Diagram
[**get_process_definition_diagram_by_key_and_tenant_id**](ProcessDefinitionApi.md#get_process_definition_diagram_by_key_and_tenant_id) | **get** /process-definition/key/{key}/tenant/{tenant-id}/diagram | Get Diagram
[**get_process_definition_statistics**](ProcessDefinitionApi.md#get_process_definition_statistics) | **get** /process-definition/statistics | Get Process Instance Statistics
[**get_process_definitions**](ProcessDefinitionApi.md#get_process_definitions) | **get** /process-definition | Get List
[**get_process_definitions_count**](ProcessDefinitionApi.md#get_process_definitions_count) | **get** /process-definition/count | Get List Count
[**get_rendered_start_form**](ProcessDefinitionApi.md#get_rendered_start_form) | **get** /process-definition/{id}/rendered-form | Get Rendered Start Form
[**get_rendered_start_form_by_key**](ProcessDefinitionApi.md#get_rendered_start_form_by_key) | **get** /process-definition/key/{key}/rendered-form | Get Rendered Start Form
[**get_rendered_start_form_by_key_and_tenant_id**](ProcessDefinitionApi.md#get_rendered_start_form_by_key_and_tenant_id) | **get** /process-definition/key/{key}/tenant/{tenant-id}/rendered-form | Get Rendered Start Form
[**get_start_form**](ProcessDefinitionApi.md#get_start_form) | **get** /process-definition/{id}/startForm | Get Start Form Key
[**get_start_form_by_key**](ProcessDefinitionApi.md#get_start_form_by_key) | **get** /process-definition/key/{key}/startForm | Get Start Form Key
[**get_start_form_by_key_and_tenant_id**](ProcessDefinitionApi.md#get_start_form_by_key_and_tenant_id) | **get** /process-definition/key/{key}/tenant/{tenant-id}/startForm | Get Start Form Key
[**get_start_form_variables**](ProcessDefinitionApi.md#get_start_form_variables) | **get** /process-definition/{id}/form-variables | Get Start Form Variables
[**get_start_form_variables_by_key**](ProcessDefinitionApi.md#get_start_form_variables_by_key) | **get** /process-definition/key/{key}/form-variables | Get Start Form Variables
[**get_start_form_variables_by_key_and_tenant_id**](ProcessDefinitionApi.md#get_start_form_variables_by_key_and_tenant_id) | **get** /process-definition/key/{key}/tenant/{tenant-id}/form-variables | Get Start Form Variables
[**restart_process_instance**](ProcessDefinitionApi.md#restart_process_instance) | **post** /process-definition/{id}/restart | Restart Process Instance
[**restart_process_instance_async_operation**](ProcessDefinitionApi.md#restart_process_instance_async_operation) | **post** /process-definition/{id}/restart-async | Restart Process Instance Async
[**start_process_instance**](ProcessDefinitionApi.md#start_process_instance) | **post** /process-definition/{id}/start | Start Instance
[**start_process_instance_by_key**](ProcessDefinitionApi.md#start_process_instance_by_key) | **post** /process-definition/key/{key}/start | Start Instance
[**start_process_instance_by_key_and_tenant_id**](ProcessDefinitionApi.md#start_process_instance_by_key_and_tenant_id) | **post** /process-definition/key/{key}/tenant/{tenant-id}/start | Start Instance
[**submit_form**](ProcessDefinitionApi.md#submit_form) | **post** /process-definition/{id}/submit-form | Submit Start Form
[**submit_form_by_key**](ProcessDefinitionApi.md#submit_form_by_key) | **post** /process-definition/key/{key}/submit-form | Submit Start Form
[**submit_form_by_key_and_tenant_id**](ProcessDefinitionApi.md#submit_form_by_key_and_tenant_id) | **post** /process-definition/key/{key}/tenant/{tenant-id}/submit-form | Submit Start Form
[**update_history_time_to_live_by_process_definition_id**](ProcessDefinitionApi.md#update_history_time_to_live_by_process_definition_id) | **put** /process-definition/{id}/history-time-to-live | Update History Time to Live
[**update_history_time_to_live_by_process_definition_key**](ProcessDefinitionApi.md#update_history_time_to_live_by_process_definition_key) | **put** /process-definition/key/{key}/history-time-to-live | Update History Time to Live
[**update_history_time_to_live_by_process_definition_key_and_tenant_id**](ProcessDefinitionApi.md#update_history_time_to_live_by_process_definition_key_and_tenant_id) | **put** /process-definition/key/{key}/tenant/{tenant-id}/history-time-to-live | Update History Time to Live
[**update_process_definition_suspension_state**](ProcessDefinitionApi.md#update_process_definition_suspension_state) | **put** /process-definition/suspended | Activate/Suspend By Key
[**update_process_definition_suspension_state_by_id**](ProcessDefinitionApi.md#update_process_definition_suspension_state_by_id) | **put** /process-definition/{id}/suspended | Activate/Suspend By Id
[**update_process_definition_suspension_state_by_key**](ProcessDefinitionApi.md#update_process_definition_suspension_state_by_key) | **put** /process-definition/key/{key}/suspended | Activate/Suspend by Id
[**update_process_definition_suspension_state_by_key_and_tenant_id**](ProcessDefinitionApi.md#update_process_definition_suspension_state_by_key_and_tenant_id) | **put** /process-definition/key/{key}/tenant/{tenant-id}/suspended | Activate/Suspend by Id



## delete_process_definition

> delete_process_definition(id, cascade, skip_custom_listeners, skip_io_mappings)
Delete

Deletes a running process instance by id.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition to be deleted. | [required] |
**cascade** | Option<**bool**> | `true`, if all process instances, historic process instances and jobs for this process definition should be deleted. |  |
**skip_custom_listeners** | Option<**bool**> | `true`, if only the built-in ExecutionListeners should be notified with the end event. |  |[default to false]
**skip_io_mappings** | Option<**bool**> | A boolean value to control whether input/output mappings should be executed during deletion. `true`, if input/output mappings should not be invoked. |  |[default to false]

### Return type

 (empty response body)

### 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)


## delete_process_definitions_by_key

> delete_process_definitions_by_key(key, cascade, skip_custom_listeners, skip_io_mappings)
Delete By Key

Deletes process definitions by a given key which belong to no tenant id.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definitions to be deleted. | [required] |
**cascade** | Option<**bool**> | `true`, if all process instances, historic process instances and jobs for this process definition should be deleted. |  |
**skip_custom_listeners** | Option<**bool**> | `true`, if only the built-in ExecutionListeners should be notified with the end event. |  |[default to false]
**skip_io_mappings** | Option<**bool**> | A boolean value to control whether input/output mappings should be executed during deletion. `true`, if input/output mappings should not be invoked. |  |[default to false]

### Return type

 (empty response body)

### 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)


## delete_process_definitions_by_key_and_tenant_id

> delete_process_definitions_by_key_and_tenant_id(key, tenant_id, cascade, skip_custom_listeners, skip_io_mappings)
Delete By Key

Deletes process definitions by a given key and which belong to a tenant id.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definitions to be deleted. | [required] |
**tenant_id** | **String** | The id of the tenant the process definitions belong to. | [required] |
**cascade** | Option<**bool**> | `true`, if all process instances, historic process instances and jobs for this process definition should be deleted. |  |
**skip_custom_listeners** | Option<**bool**> | `true`, if only the built-in ExecutionListeners should be notified with the end event. |  |[default to false]
**skip_io_mappings** | Option<**bool**> | A boolean value to control whether input/output mappings should be executed during deletion. `true`, if input/output mappings should not be invoked. |  |[default to false]

### Return type

 (empty response body)

### 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)


## get_activity_statistics

> Vec<crate::models::ActivityStatisticsResultDto> get_activity_statistics(id, failed_jobs, incidents, incidents_for_type)
Get Activity Instance Statistics

Retrieves runtime statistics of a given process definition, grouped by activities. These statistics include the number of running activity instances, optionally the number of failed jobs and also optionally the number of incidents either grouped by incident types or for a specific incident type. **Note**: This does not include historic data.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition. | [required] |
**failed_jobs** | Option<**bool**> | Whether to include the number of failed jobs in the result or not. Valid values are `true` or `false`. |  |
**incidents** | Option<**bool**> | Valid values for this property are `true` or `false`. If this property has been set to `true` the result will include the corresponding number of incidents for each occurred incident type. If it is set to `false`, the incidents will not be included in the result. Cannot be used in combination with `incidentsForType`. |  |
**incidents_for_type** | Option<**String**> | If this property has been set with any incident type (i.e., a string value) the result will only include the number of incidents for the assigned incident type. Cannot be used in combination with `incidents`. See the [User Guide](https://docs.camunda.org/manual/7.13/user-guide/process-engine/incidents/#incident-types) for a list of incident types. |  |

### Return type

[**Vec<crate::models::ActivityStatisticsResultDto>**](ActivityStatisticsResultDto.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)


## get_activity_statistics_by_process_definition_key

> Vec<crate::models::ActivityStatisticsResultDto> get_activity_statistics_by_process_definition_key(key, failed_jobs, incidents, incidents_for_type)
Get Activity Instance Statistics

Retrieves runtime statistics of the latest version of the given process definition which belongs to no tenant, grouped by activities. These statistics include the number of running activity instances, optionally the number of failed jobs and also optionally the number of incidents either grouped by incident types or for a specific incident type. **Note**: This does not include historic data.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) to be retrieved. | [required] |
**failed_jobs** | Option<**bool**> | Whether to include the number of failed jobs in the result or not. Valid values are `true` or `false`. |  |
**incidents** | Option<**bool**> | Valid values for this property are `true` or `false`. If this property has been set to `true` the result will include the corresponding number of incidents for each occurred incident type. If it is set to `false`, the incidents will not be included in the result. Cannot be used in combination with `incidentsForType`. |  |
**incidents_for_type** | Option<**String**> | If this property has been set with any incident type (i.e., a string value) the result will only include the number of incidents for the assigned incident type. Cannot be used in combination with `incidents`. See the [User Guide](https://docs.camunda.org/manual/7.13/user-guide/process-engine/incidents/#incident-types) for a list of incident types. |  |

### Return type

[**Vec<crate::models::ActivityStatisticsResultDto>**](ActivityStatisticsResultDto.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)


## get_activity_statistics_by_process_definition_key_and_tenant_id

> Vec<crate::models::ActivityStatisticsResultDto> get_activity_statistics_by_process_definition_key_and_tenant_id(key, tenant_id, failed_jobs, incidents, incidents_for_type)
Get Activity Instance Statistics

Retrieves runtime statistics of the latest version of the given process definition for a tenant, grouped by activities. These statistics include the number of running activity instances, optionally the number of failed jobs and also optionally the number of incidents either grouped by incident types or for a specific incident type. **Note**: This does not include historic data.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) to be retrieved. | [required] |
**tenant_id** | **String** | The id of the tenant the process definition belongs to. | [required] |
**failed_jobs** | Option<**bool**> | Whether to include the number of failed jobs in the result or not. Valid values are `true` or `false`. |  |
**incidents** | Option<**bool**> | Valid values for this property are `true` or `false`. If this property has been set to `true` the result will include the corresponding number of incidents for each occurred incident type. If it is set to `false`, the incidents will not be included in the result. Cannot be used in combination with `incidentsForType`. |  |
**incidents_for_type** | Option<**String**> | If this property has been set with any incident type (i.e., a string value) the result will only include the number of incidents for the assigned incident type. Cannot be used in combination with `incidents`. See the [User Guide](https://docs.camunda.org/manual/7.13/user-guide/process-engine/incidents/#incident-types) for a list of incident types. |  |

### Return type

[**Vec<crate::models::ActivityStatisticsResultDto>**](ActivityStatisticsResultDto.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)


## get_deployed_start_form

> std::path::PathBuf get_deployed_start_form(id)
Get Deployed Start Form

Retrieves the deployed form that can be referenced from a start event. For further information please refer to [User Guide](https://docs.camunda.org/manual/7.13/user-guide/task-forms/#embedded-task-forms).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition to get the deployed start form for. | [required] |

### Return type

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

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/xhtml+xml, 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_deployed_start_form_by_key

> std::path::PathBuf get_deployed_start_form_by_key(key)
Get Deployed Start Form

Retrieves the deployed form that can be referenced from a start event. For further information please refer to [User Guide](https://docs.camunda.org/manual/7.13/user-guide/task-forms/#embedded-task-forms).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) to be retrieved. | [required] |

### Return type

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

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/xhtml+xml, 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_deployed_start_form_by_key_and_tenant_id

> std::path::PathBuf get_deployed_start_form_by_key_and_tenant_id(key, tenant_id)
Get Deployed Start Form

Retrieves the deployed form that can be referenced from a start event. For further information please refer to [User Guide](https://docs.camunda.org/manual/7.13/user-guide/task-forms/#embedded-task-forms).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) to be retrieved. | [required] |
**tenant_id** | **String** | The id of the tenant the process definitions belong to. | [required] |

### Return type

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

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/xhtml+xml, 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_latest_process_definition_by_tenant_id

> crate::models::ProcessDefinitionDto get_latest_process_definition_by_tenant_id(key, tenant_id)
Get

Retrieves the latest version of the process definition for tenant according to the `ProcessDefinition` interface in the engine.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) to be retrieved. | [required] |
**tenant_id** | **String** | The id of the tenant the process definition belongs to. | [required] |

### Return type

[**crate::models::ProcessDefinitionDto**](ProcessDefinitionDto.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)


## get_process_definition

> crate::models::ProcessDefinitionDto get_process_definition(id)
Get

Retrieves a process definition according to the `ProcessDefinition` interface in the engine.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition to be retrieved. | [required] |

### Return type

[**crate::models::ProcessDefinitionDto**](ProcessDefinitionDto.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)


## get_process_definition_bpmn20_xml

> crate::models::ProcessDefinitionDiagramDto get_process_definition_bpmn20_xml(id)
Get XML

Retrieves the BPMN 2.0 XML of a process definition.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition. | [required] |

### Return type

[**crate::models::ProcessDefinitionDiagramDto**](ProcessDefinitionDiagramDto.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)


## get_process_definition_bpmn20_xml_by_key

> crate::models::ProcessDefinitionDiagramDto get_process_definition_bpmn20_xml_by_key(key)
Get XML

Retrieves latest version the BPMN 2.0 XML of a process definition.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) whose XML should be retrieved. | [required] |

### Return type

[**crate::models::ProcessDefinitionDiagramDto**](ProcessDefinitionDiagramDto.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)


## get_process_definition_bpmn20_xml_by_key_and_tenant_id

> crate::models::ProcessDefinitionDiagramDto get_process_definition_bpmn20_xml_by_key_and_tenant_id(key, tenant_id)
Get XML

Retrieves latest version the BPMN 2.0 XML of a process definition. Returns the XML for the latest version of the process definition for tenant.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) whose XML should be retrieved. | [required] |
**tenant_id** | **String** | The id of the tenant the process definition belongs to. | [required] |

### Return type

[**crate::models::ProcessDefinitionDiagramDto**](ProcessDefinitionDiagramDto.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)


## get_process_definition_by_key

> crate::models::ProcessDefinitionDto get_process_definition_by_key(key)
Get

Retrieves the latest version of the process definition which belongs to no tenant according to the `ProcessDefinition` interface in the engine.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) to be retrieved. | [required] |

### Return type

[**crate::models::ProcessDefinitionDto**](ProcessDefinitionDto.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)


## get_process_definition_diagram

> std::path::PathBuf get_process_definition_diagram(id)
Get Diagram

Retrieves the diagram of a process definition.  If the process definition's deployment contains an image resource with the same file name as the process definition, the deployed image will be returned by the Get Diagram endpoint. Example: `someProcess.bpmn` and `someProcess.png`. Supported file extentions for the image are: `svg`, `png`, `jpg`, and `gif`.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition. | [required] |

### Return type

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

### Authorization

No authorization required

### HTTP request headers

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

> std::path::PathBuf get_process_definition_diagram_by_key(key)
Get Diagram

Retrieves the diagram for the latest version of the process definition which belongs to no tenant.  If the process definition's deployment contains an image resource with the same file name as the process definition, the deployed image will be returned by the Get Diagram endpoint. Example: `someProcess.bpmn` and `someProcess.png`. Supported file extentions for the image are: `svg`, `png`, `jpg`, and `gif`.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition. | [required] |

### Return type

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

### Authorization

No authorization required

### HTTP request headers

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

> std::path::PathBuf get_process_definition_diagram_by_key_and_tenant_id(key, tenant_id)
Get Diagram

Retrieves the diagram for the latest version of the process definition for tenant.  If the process definition's deployment contains an image resource with the same file name as the process definition, the deployed image will be returned by the Get Diagram endpoint. Example: `someProcess.bpmn` and `someProcess.png`. Supported file extentions for the image are: `svg`, `png`, `jpg`, and `gif`.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition. | [required] |
**tenant_id** | **String** | The id of the tenant the process definition belongs to. | [required] |

### Return type

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

### Authorization

No authorization required

### HTTP request headers

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

> Vec<crate::models::ProcessDefinitionStatisticsResultDto> get_process_definition_statistics(failed_jobs, incidents, incidents_for_type, root_incidents)
Get Process Instance Statistics

Retrieves runtime statistics of the process engine, grouped by process definitions. These statistics include the number of running process instances, optionally the number of failed jobs and also optionally the number of incidents either grouped by incident types or for a specific incident type. **Note**: This does not include historic data.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**failed_jobs** | Option<**bool**> | Whether to include the number of failed jobs in the result or not. Valid values are `true` or `false`. |  |
**incidents** | Option<**bool**> | Valid values for this property are `true` or `false`. If this property has been set to `true` the result will include the corresponding number of incidents for each occurred incident type. If it is set to `false`, the incidents will not be included in the result. Cannot be used in combination with `incidentsForType`. |  |
**incidents_for_type** | Option<**String**> | If this property has been set with any incident type (i.e., a string value) the result will only include the number of incidents for the assigned incident type. Cannot be used in combination with `incidents`. See the [User Guide](https://docs.camunda.org/manual/7.13/user-guide/process-engine/incidents/#incident-types) for a list of incident types. |  |
**root_incidents** | Option<**bool**> | Valid values for this property are `true` or `false`. If this property has been set to `true` the result will include the corresponding number of root incidents for each occurred incident type. If it is set to `false`, the incidents will not be included in the result. Cannot be used in combination with `incidentsForType` or `incidents`. |  |

### Return type

[**Vec<crate::models::ProcessDefinitionStatisticsResultDto>**](ProcessDefinitionStatisticsResultDto.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)


## get_process_definitions

> Vec<crate::models::ProcessDefinitionDto> get_process_definitions(process_definition_id, process_definition_id_in, name, name_like, deployment_id, deployed_after, deployed_at, key, keys_in, key_like, category, category_like, version, latest_version, resource_name, resource_name_like, startable_by, active, suspended, incident_id, incident_type, incident_message, incident_message_like, tenant_id_in, without_tenant_id, include_process_definitions_without_tenant_id, version_tag, version_tag_like, without_version_tag, startable_in_tasklist, not_startable_in_tasklist, startable_permission_check, sort_by, sort_order, first_result, max_results)
Get List

Queries for process definitions that fulfill given parameters. Parameters may be the properties of  process definitions, such as the name, key or version. The size of the result set can be retrieved by using the [Get Definition Count](https://docs.camunda.org/manual/7.13/reference/rest/process-definition/get-query-count/) method.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**process_definition_id** | Option<**String**> | Filter by process definition id. |  |
**process_definition_id_in** | Option<**String**> | Filter by a comma-separated list of process definition ids. |  |
**name** | Option<**String**> | Filter by process definition name. |  |
**name_like** | Option<**String**> | Filter by process definition names that the parameter is a substring of. |  |
**deployment_id** | Option<**String**> | Filter by the deployment the id belongs to. |  |
**deployed_after** | Option<**String**> | Filter by the deploy time of the deployment the process definition belongs to. Only selects process definitions that have been deployed after (exclusive) a specific time. By [default](https://docs.camunda.org/manual/7.13/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.546+0200`. |  |
**deployed_at** | Option<**String**> | Filter by the deploy time of the deployment the process definition belongs to. Only selects process definitions that have been deployed at a specific time (exact match). By [default](https://docs.camunda.org/manual/7.13/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.546+0200`. |  |
**key** | Option<**String**> | Filter by process definition key, i.e., the id in the BPMN 2.0 XML. Exact match. |  |
**keys_in** | Option<**String**> | Filter by a comma-separated list of process definition keys. |  |
**key_like** | Option<**String**> | Filter by process definition keys that the parameter is a substring of. |  |
**category** | Option<**String**> | Filter by process definition category. Exact match. |  |
**category_like** | Option<**String**> | Filter by process definition categories that the parameter is a substring of. |  |
**version** | Option<**i32**> | Filter by process definition version. |  |
**latest_version** | Option<**bool**> | Only include those process definitions that are latest versions. Value may only be `true`, as `false` is the default behavior. |  |
**resource_name** | Option<**String**> | Filter by the name of the process definition resource. Exact match. |  |
**resource_name_like** | Option<**String**> | Filter by names of those process definition resources that the parameter is a substring of. |  |
**startable_by** | Option<**String**> | Filter by a user name who is allowed to start the process. |  |
**active** | Option<**bool**> | Only include active process definitions. Value may only be `true`, as `false` is the default behavior. |  |
**suspended** | Option<**bool**> | Only include suspended process definitions. Value may only be `true`, as `false` is the default behavior. |  |
**incident_id** | Option<**String**> | Filter by the incident id. |  |
**incident_type** | Option<**String**> | Filter by the incident type. See the [User Guide](https://docs.camunda.org/manual/7.13/user-guide/process-engine/incidents/#incident-types) for a list of incident types. |  |
**incident_message** | Option<**String**> | Filter by the incident message. Exact match. |  |
**incident_message_like** | Option<**String**> | Filter by the incident message that the parameter is a substring of. |  |
**tenant_id_in** | Option<**String**> | Filter by a comma-separated list of tenant ids. A process definition must have one of the given tenant ids. |  |
**without_tenant_id** | Option<**bool**> | Only include process definitions which belong to no tenant. Value may only be true, as false is the default behavior. |  |
**include_process_definitions_without_tenant_id** | Option<**bool**> | Include process definitions which belong to no tenant. Can be used in combination with `tenantIdIn`. Value may only be `true`, as `false` is the default behavior. |  |
**version_tag** | Option<**String**> | Filter by the version tag. |  |
**version_tag_like** | Option<**String**> | Filter by the version tag that the parameter is a substring of. |  |
**without_version_tag** | Option<**bool**> | Only include process definitions without a `versionTag`. |  |
**startable_in_tasklist** | Option<**bool**> | Filter by process definitions which are startable in Tasklist.. |  |
**not_startable_in_tasklist** | Option<**bool**> | Filter by process definitions which are not startable in Tasklist. |  |
**startable_permission_check** | Option<**bool**> | Filter by process definitions which the user is allowed to start in Tasklist. If the user doesn't have these permissions the result will be empty list. The permissions are: * `CREATE` permission for all Process instances * `CREATE_INSTANCE` and `READ` permission on Process definition level |  |
**sort_by** | Option<**String**> | Sort the results lexicographically by a given criterion. Must be used in conjunction with the sortOrder parameter. |  |
**sort_order** | Option<**String**> | Sort the results in a given order. Values may be asc for ascending order or desc for descending order. Must be used in conjunction with the sortBy parameter. |  |
**first_result** | Option<**i32**> | Pagination of results. Specifies the index of the first result to return. |  |
**max_results** | Option<**i32**> | Pagination of results. Specifies the maximum number of results to return. Will return less results if there are no more results left. |  |

### Return type

[**Vec<crate::models::ProcessDefinitionDto>**](ProcessDefinitionDto.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)


## get_process_definitions_count

> crate::models::CountResultDto get_process_definitions_count(process_definition_id, process_definition_id_in, name, name_like, deployment_id, deployed_after, deployed_at, key, keys_in, key_like, category, category_like, version, latest_version, resource_name, resource_name_like, startable_by, active, suspended, incident_id, incident_type, incident_message, incident_message_like, tenant_id_in, without_tenant_id, include_process_definitions_without_tenant_id, version_tag, version_tag_like, without_version_tag, startable_in_tasklist, not_startable_in_tasklist, startable_permission_check)
Get List Count

Requests the number of process definitions that fulfill the query criteria. Takes the same filtering parameters as the [Get Definitions](https://docs.camunda.org/manual/7.13/reference/rest/process-definition/get-query/) method.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**process_definition_id** | Option<**String**> | Filter by process definition id. |  |
**process_definition_id_in** | Option<**String**> | Filter by a comma-separated list of process definition ids. |  |
**name** | Option<**String**> | Filter by process definition name. |  |
**name_like** | Option<**String**> | Filter by process definition names that the parameter is a substring of. |  |
**deployment_id** | Option<**String**> | Filter by the deployment the id belongs to. |  |
**deployed_after** | Option<**String**> | Filter by the deploy time of the deployment the process definition belongs to. Only selects process definitions that have been deployed after (exclusive) a specific time. By [default](https://docs.camunda.org/manual/7.13/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.546+0200`. |  |
**deployed_at** | Option<**String**> | Filter by the deploy time of the deployment the process definition belongs to. Only selects process definitions that have been deployed at a specific time (exact match). By [default](https://docs.camunda.org/manual/7.13/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.546+0200`. |  |
**key** | Option<**String**> | Filter by process definition key, i.e., the id in the BPMN 2.0 XML. Exact match. |  |
**keys_in** | Option<**String**> | Filter by a comma-separated list of process definition keys. |  |
**key_like** | Option<**String**> | Filter by process definition keys that the parameter is a substring of. |  |
**category** | Option<**String**> | Filter by process definition category. Exact match. |  |
**category_like** | Option<**String**> | Filter by process definition categories that the parameter is a substring of. |  |
**version** | Option<**i32**> | Filter by process definition version. |  |
**latest_version** | Option<**bool**> | Only include those process definitions that are latest versions. Value may only be `true`, as `false` is the default behavior. |  |
**resource_name** | Option<**String**> | Filter by the name of the process definition resource. Exact match. |  |
**resource_name_like** | Option<**String**> | Filter by names of those process definition resources that the parameter is a substring of. |  |
**startable_by** | Option<**String**> | Filter by a user name who is allowed to start the process. |  |
**active** | Option<**bool**> | Only include active process definitions. Value may only be `true`, as `false` is the default behavior. |  |
**suspended** | Option<**bool**> | Only include suspended process definitions. Value may only be `true`, as `false` is the default behavior. |  |
**incident_id** | Option<**String**> | Filter by the incident id. |  |
**incident_type** | Option<**String**> | Filter by the incident type. See the [User Guide](https://docs.camunda.org/manual/7.13/user-guide/process-engine/incidents/#incident-types) for a list of incident types. |  |
**incident_message** | Option<**String**> | Filter by the incident message. Exact match. |  |
**incident_message_like** | Option<**String**> | Filter by the incident message that the parameter is a substring of. |  |
**tenant_id_in** | Option<**String**> | Filter by a comma-separated list of tenant ids. A process definition must have one of the given tenant ids. |  |
**without_tenant_id** | Option<**bool**> | Only include process definitions which belong to no tenant. Value may only be true, as false is the default behavior. |  |
**include_process_definitions_without_tenant_id** | Option<**bool**> | Include process definitions which belong to no tenant. Can be used in combination with `tenantIdIn`. Value may only be `true`, as `false` is the default behavior. |  |
**version_tag** | Option<**String**> | Filter by the version tag. |  |
**version_tag_like** | Option<**String**> | Filter by the version tag that the parameter is a substring of. |  |
**without_version_tag** | Option<**bool**> | Only include process definitions without a `versionTag`. |  |
**startable_in_tasklist** | Option<**bool**> | Filter by process definitions which are startable in Tasklist.. |  |
**not_startable_in_tasklist** | Option<**bool**> | Filter by process definitions which are not startable in Tasklist. |  |
**startable_permission_check** | Option<**bool**> | Filter by process definitions which the user is allowed to start in Tasklist. If the user doesn't have these permissions the result will be empty list. The permissions are: * `CREATE` permission for all Process instances * `CREATE_INSTANCE` and `READ` permission on Process definition level |  |

### Return type

[**crate::models::CountResultDto**](CountResultDto.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)


## get_rendered_start_form

> std::path::PathBuf get_rendered_start_form(id)
Get Rendered Start Form

Retrieves the rendered form for a process definition. This method can be used to get the HTML rendering of a [Generated Task Form](https://docs.camunda.org/manual/7.13/user-guide/task-forms/#generated-task-forms).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition to get the rendered start form for. | [required] |

### Return type

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

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/xhtml+xml, 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_rendered_start_form_by_key

> std::path::PathBuf get_rendered_start_form_by_key(key)
Get Rendered Start Form

Retrieves  the rendered form for the latest version of the process definition which belongs to no tenant. This method can be used to get the HTML rendering of a [Generated Task Form](https://docs.camunda.org/manual/7.13/user-guide/task-forms/#generated-task-forms).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) to be retrieved. | [required] |

### Return type

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

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/xhtml+xml, 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_rendered_start_form_by_key_and_tenant_id

> std::path::PathBuf get_rendered_start_form_by_key_and_tenant_id(key, tenant_id)
Get Rendered Start Form

Retrieves  the rendered form for the latest version of the process definition for a tenant. This method can be used to get the HTML rendering of a [Generated Task Form](https://docs.camunda.org/manual/7.13/user-guide/task-forms/#generated-task-forms).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) to be retrieved. | [required] |
**tenant_id** | **String** | The id of the tenant the process definition belongs to. | [required] |

### Return type

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

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/xhtml+xml, 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_start_form

> crate::models::FormDto get_start_form(id)
Get Start Form Key

Retrieves the key of the start form for a process definition. The form key corresponds to the `FormData#formKey` property in the engine.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition to get the start form key for. | [required] |

### Return type

[**crate::models::FormDto**](FormDto.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)


## get_start_form_by_key

> crate::models::FormDto get_start_form_by_key(key)
Get Start Form Key

Retrieves the key of the start form for the latest version of the process definition which belongs to no tenant. The form key corresponds to the `FormData#formKey` property in the engine.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) for which the form key is to be retrieved. | [required] |

### Return type

[**crate::models::FormDto**](FormDto.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)


## get_start_form_by_key_and_tenant_id

> crate::models::FormDto get_start_form_by_key_and_tenant_id(key, tenant_id)
Get Start Form Key

Retrieves the key of the start form for the latest version of the process definition for a tenant. The form key corresponds to the `FormData#formKey` property in the engine.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) for which the form key is to be retrieved. | [required] |
**tenant_id** | **String** | The id of the tenant the process definition belongs to. | [required] |

### Return type

[**crate::models::FormDto**](FormDto.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)


## get_start_form_variables

> ::std::collections::HashMap<String, crate::models::VariableValueDto> get_start_form_variables(id, variable_names, deserialize_values)
Get Start Form Variables

Retrieves the start form variables for a process definition (only if they are defined via the  [Generated Task Form](https://docs.camunda.org/manual/7.13/user-guide/task-forms/#generated-task-forms) approach). The start form variables take form data specified on the start event into account. If form fields are defined, the variable types and default values of the form fields are taken into account.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition to retrieve the variables for. | [required] |
**variable_names** | Option<**String**> | A comma-separated list of variable names. Allows restricting the list of requested variables to the variable names in the list. It is best practice to restrict the list of variables to the variables actually required by the form in order to minimize fetching of data. If the query parameter is ommitted all variables are fetched. If the query parameter contains non-existent variable names, the variable names are ignored. |  |
**deserialize_values** | Option<**bool**> | Determines whether serializable variable values (typically variables that store custom Java objects) should be deserialized on server side (default true).  If set to true, a serializable variable will be deserialized on server side and transformed to JSON using [Jackson's](http://jackson.codehaus.org/) POJO/bean property introspection feature. Note that this requires the Java classes of the variable value to be on the REST API's classpath.  If set to false, a serializable variable will be returned in its serialized format. For example, a variable that is serialized as XML will be returned as a JSON string containing XML.  **Note**: While true is the default value for reasons of backward compatibility, we recommend setting this parameter to false when developing web applications that are independent of the Java process applications deployed to the engine. |  |[default to true]

### Return type

[**::std::collections::HashMap<String, crate::models::VariableValueDto>**](VariableValueDto.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)


## get_start_form_variables_by_key

> ::std::collections::HashMap<String, crate::models::VariableValueDto> get_start_form_variables_by_key(key, variable_names, deserialize_values)
Get Start Form Variables

Retrieves the start form variables for the latest process definition which belongs to no tenant (only if they are defined via the  [Generated Task Form](https://docs.camunda.org/manual/7.13/user-guide/task-forms/#generated-task-forms) approach). The start form variables take form data specified on the start event into account. If form fields are defined, the variable types and default values of the form fields are taken into account.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) to be retrieved. | [required] |
**variable_names** | Option<**String**> | A comma-separated list of variable names. Allows restricting the list of requested variables to the variable names in the list. It is best practice to restrict the list of variables to the variables actually required by the form in order to minimize fetching of data. If the query parameter is ommitted all variables are fetched. If the query parameter contains non-existent variable names, the variable names are ignored. |  |
**deserialize_values** | Option<**bool**> | Determines whether serializable variable values (typically variables that store custom Java objects) should be deserialized on server side (default true).  If set to true, a serializable variable will be deserialized on server side and transformed to JSON using [Jackson's](http://jackson.codehaus.org/) POJO/bean property introspection feature. Note that this requires the Java classes of the variable value to be on the REST API's classpath.  If set to false, a serializable variable will be returned in its serialized format. For example, a variable that is serialized as XML will be returned as a JSON string containing XML.  **Note**: While true is the default value for reasons of backward compatibility, we recommend setting this parameter to false when developing web applications that are independent of the Java process applications deployed to the engine. |  |[default to true]

### Return type

[**::std::collections::HashMap<String, crate::models::VariableValueDto>**](VariableValueDto.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)


## get_start_form_variables_by_key_and_tenant_id

> ::std::collections::HashMap<String, crate::models::VariableValueDto> get_start_form_variables_by_key_and_tenant_id(key, tenant_id, variable_names, deserialize_values)
Get Start Form Variables

Retrieves the start form variables for the latest process definition for a tenant (only if they are defined via the  [Generated Task Form](https://docs.camunda.org/manual/7.13/user-guide/task-forms/#generated-task-forms) approach). The start form variables take form data specified on the start event into account. If form fields are defined, the variable types and default values of the form fields are taken into account.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) to be retrieved. | [required] |
**tenant_id** | **String** | The id of the tenant the process definition belongs to. | [required] |
**variable_names** | Option<**String**> | A comma-separated list of variable names. Allows restricting the list of requested variables to the variable names in the list. It is best practice to restrict the list of variables to the variables actually required by the form in order to minimize fetching of data. If the query parameter is ommitted all variables are fetched. If the query parameter contains non-existent variable names, the variable names are ignored. |  |
**deserialize_values** | Option<**bool**> | Determines whether serializable variable values (typically variables that store custom Java objects) should be deserialized on server side (default true).  If set to true, a serializable variable will be deserialized on server side and transformed to JSON using [Jackson's](http://jackson.codehaus.org/) POJO/bean property introspection feature. Note that this requires the Java classes of the variable value to be on the REST API's classpath.  If set to false, a serializable variable will be returned in its serialized format. For example, a variable that is serialized as XML will be returned as a JSON string containing XML.  **Note**: While true is the default value for reasons of backward compatibility, we recommend setting this parameter to false when developing web applications that are independent of the Java process applications deployed to the engine. |  |[default to true]

### Return type

[**::std::collections::HashMap<String, crate::models::VariableValueDto>**](VariableValueDto.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)


## restart_process_instance

> restart_process_instance(id, restart_process_instance_dto)
Restart Process Instance

Restarts process instances that were canceled or terminated synchronously. Can also restart completed process instances. It will create a new instance using the original instance information. To execute the restart asynchronously, use the [Restart Process Instance Async](https://docs.camunda.org/manual/7.13/reference/rest/process-definition/post-restart-process-instance-async/) method.  For more information about the difference between synchronous and asynchronous execution, please refer to the related section of the [User Guide](https://docs.camunda.org/manual/7.13/user-guide/process-engine/process-instance-restart/#execution).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition of the process instances to restart. | [required] |
**restart_process_instance_dto** | Option<[**RestartProcessInstanceDto**](RestartProcessInstanceDto.md)> |  |  |

### Return type

 (empty response body)

### 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)


## restart_process_instance_async_operation

> crate::models::BatchDto restart_process_instance_async_operation(id, restart_process_instance_dto)
Restart Process Instance Async

Restarts process instances that were canceled or terminated asynchronously. Can also restart completed process instances. It will create a new instance using the original instance information. To execute the restart asynchronously, use the [Restart Process Instance](https://docs.camunda.org/manual/7.13/reference/rest/process-definition/post-restart-process-instance-sync/) method.  For more information about the difference between synchronous and asynchronous execution, please refer to the related section of the [User Guide](https://docs.camunda.org/manual/7.13/user-guide/process-engine/process-instance-restart/#execution).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition of the process instances to restart. | [required] |
**restart_process_instance_dto** | Option<[**RestartProcessInstanceDto**](RestartProcessInstanceDto.md)> |  |  |

### Return type

[**crate::models::BatchDto**](BatchDto.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)


## start_process_instance

> crate::models::ProcessInstanceWithVariablesDto start_process_instance(id, start_process_instance_dto)
Start Instance

Instantiates a given process definition. Process variables and business key may be supplied in the request body.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition to be retrieved. | [required] |
**start_process_instance_dto** | Option<[**StartProcessInstanceDto**](StartProcessInstanceDto.md)> |  |  |

### Return type

[**crate::models::ProcessInstanceWithVariablesDto**](ProcessInstanceWithVariablesDto.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)


## start_process_instance_by_key

> crate::models::ProcessInstanceWithVariablesDto start_process_instance_by_key(key, start_process_instance_dto)
Start Instance

Instantiates a given process definition, starts the latest version of the process definition which belongs to no tenant. Process variables and business key may be supplied in the request body.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) to be retrieved. | [required] |
**start_process_instance_dto** | Option<[**StartProcessInstanceDto**](StartProcessInstanceDto.md)> |  |  |

### Return type

[**crate::models::ProcessInstanceWithVariablesDto**](ProcessInstanceWithVariablesDto.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)


## start_process_instance_by_key_and_tenant_id

> crate::models::ProcessInstanceWithVariablesDto start_process_instance_by_key_and_tenant_id(key, tenant_id, start_process_instance_dto)
Start Instance

Instantiates a given process definition, starts the latest version of the process definition for tenant. Process variables and business key may be supplied in the request body.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) to be retrieved. | [required] |
**tenant_id** | **String** | The id of the tenant the process definition belongs to. | [required] |
**start_process_instance_dto** | Option<[**StartProcessInstanceDto**](StartProcessInstanceDto.md)> |  |  |

### Return type

[**crate::models::ProcessInstanceWithVariablesDto**](ProcessInstanceWithVariablesDto.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)


## submit_form

> crate::models::ProcessInstanceDto submit_form(id, start_process_instance_form_dto)
Submit Start Form

Starts a process instance using a set of process variables and the business key. If the start event has Form Field Metadata defined, the process engine will perform backend validation for any form fields which have validators defined. See [Documentation on Generated Task Forms](https://docs.camunda.org/manual/7.13/user-guide/task-forms/#generated-task-forms).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition to submit the form for. | [required] |
**start_process_instance_form_dto** | Option<[**StartProcessInstanceFormDto**](StartProcessInstanceFormDto.md)> |  |  |

### Return type

[**crate::models::ProcessInstanceDto**](ProcessInstanceDto.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)


## submit_form_by_key

> crate::models::ProcessInstanceDto submit_form_by_key(key, start_process_instance_form_dto)
Submit Start Form

Starts the latest version of the process definition which belongs to no tenant using a set of process variables and the business key. If the start event has Form Field Metadata defined, the process engine will perform backend validation for any form fields which have validators defined. See [Documentation on Generated Task Forms](https://docs.camunda.org/manual/7.13/user-guide/task-forms/#generated-task-forms).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition to submit the form for. | [required] |
**start_process_instance_form_dto** | Option<[**StartProcessInstanceFormDto**](StartProcessInstanceFormDto.md)> |  |  |

### Return type

[**crate::models::ProcessInstanceDto**](ProcessInstanceDto.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)


## submit_form_by_key_and_tenant_id

> crate::models::ProcessInstanceDto submit_form_by_key_and_tenant_id(key, tenant_id, start_process_instance_form_dto)
Submit Start Form

Starts the latest version of the process definition for a tenant using a set of process variables and the business key. If the start event has Form Field Metadata defined, the process engine will perform backend validation for any form fields which have validators defined. See [Documentation on Generated Task Forms](https://docs.camunda.org/manual/7.13/user-guide/task-forms/#generated-task-forms).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition to submit the form for. | [required] |
**tenant_id** | **String** | The id of the tenant the process definition belongs to. | [required] |
**start_process_instance_form_dto** | Option<[**StartProcessInstanceFormDto**](StartProcessInstanceFormDto.md)> |  |  |

### Return type

[**crate::models::ProcessInstanceDto**](ProcessInstanceDto.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)


## update_history_time_to_live_by_process_definition_id

> update_history_time_to_live_by_process_definition_id(id, history_time_to_live_dto)
Update History Time to Live

Updates history time to live for process definition. The field is used within [History cleanup](https://docs.camunda.org/manual/7.13/user-guide/process-engine/history/#history-cleanup).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition to change history time to live. | [required] |
**history_time_to_live_dto** | Option<[**HistoryTimeToLiveDto**](HistoryTimeToLiveDto.md)> |  |  |

### Return type

 (empty response body)

### 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)


## update_history_time_to_live_by_process_definition_key

> update_history_time_to_live_by_process_definition_key(key, history_time_to_live_dto)
Update History Time to Live

Updates history time to live for the latest version of the process definition which belongs to no tenant. The field is used within [History cleanup](https://docs.camunda.org/manual/7.13/user-guide/process-engine/history/#history-cleanup).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition to change history time to live. | [required] |
**history_time_to_live_dto** | Option<[**HistoryTimeToLiveDto**](HistoryTimeToLiveDto.md)> |  |  |

### Return type

 (empty response body)

### 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)


## update_history_time_to_live_by_process_definition_key_and_tenant_id

> update_history_time_to_live_by_process_definition_key_and_tenant_id(key, tenant_id, history_time_to_live_dto)
Update History Time to Live

Updates history time to live for the latest version of the process definition for a tenant. The field is used within [History cleanup](https://docs.camunda.org/manual/7.13/user-guide/process-engine/history/#history-cleanup).

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition to change history time to live. | [required] |
**tenant_id** | **String** | The id of the tenant the process definition belongs to. | [required] |
**history_time_to_live_dto** | Option<[**HistoryTimeToLiveDto**](HistoryTimeToLiveDto.md)> |  |  |

### Return type

 (empty response body)

### 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)


## update_process_definition_suspension_state

> update_process_definition_suspension_state(process_definition_suspension_state_dto)
Activate/Suspend By Key

Activates or suspends process definitions with the given process definition key.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**process_definition_suspension_state_dto** | Option<[**ProcessDefinitionSuspensionStateDto**](ProcessDefinitionSuspensionStateDto.md)> | **Note**: Unallowed property is `processDefinitionId`. |  |

### Return type

 (empty response body)

### 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)


## update_process_definition_suspension_state_by_id

> update_process_definition_suspension_state_by_id(id, process_definition_suspension_state_dto)
Activate/Suspend By Id

Activates or suspends a given process definition by id.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **String** | The id of the process definition to activate or suspend. | [required] |
**process_definition_suspension_state_dto** | Option<[**ProcessDefinitionSuspensionStateDto**](ProcessDefinitionSuspensionStateDto.md)> | **Note**: Unallowed properties are `processDefinitionId` and `processDefinitionKey`. |  |

### Return type

 (empty response body)

### 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)


## update_process_definition_suspension_state_by_key

> update_process_definition_suspension_state_by_key(key, process_definition_suspension_state_dto)
Activate/Suspend by Id

Activates or suspends a given process definition by latest version of process definition key which belongs to no tenant.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) to be activated/suspended. | [required] |
**process_definition_suspension_state_dto** | Option<[**ProcessDefinitionSuspensionStateDto**](ProcessDefinitionSuspensionStateDto.md)> | **Note**: Unallowed properties are `processDefinitionId` and `processDefinitionKey`. |  |

### Return type

 (empty response body)

### 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)


## update_process_definition_suspension_state_by_key_and_tenant_id

> update_process_definition_suspension_state_by_key_and_tenant_id(key, tenant_id, process_definition_suspension_state_dto)
Activate/Suspend by Id

Activates or suspends a given process definition by the latest version of the process definition for tenant.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**key** | **String** | The key of the process definition (the latest version thereof) to be activated/suspended. | [required] |
**tenant_id** | **String** | The id of the tenant the process definition belongs to. | [required] |
**process_definition_suspension_state_dto** | Option<[**ProcessDefinitionSuspensionStateDto**](ProcessDefinitionSuspensionStateDto.md)> | **Note**: Unallowed properties are `processDefinitionId` and `processDefinitionKey`. |  |

### Return type

 (empty response body)

### 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)