windmill-api 1.683.0

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
# \ScriptApi

All URIs are relative to */api*

Method | HTTP request | Description
------------- | ------------- | -------------
[**archive_script_by_hash**]ScriptApi.md#archive_script_by_hash | **POST** /w/{workspace}/scripts/archive/h/{hash} | archive script by hash
[**archive_script_by_path**]ScriptApi.md#archive_script_by_path | **POST** /w/{workspace}/scripts/archive/p/{path} | archive script by path
[**create_script**]ScriptApi.md#create_script | **POST** /w/{workspace}/scripts/create | create script
[**delete_script_by_hash**]ScriptApi.md#delete_script_by_hash | **POST** /w/{workspace}/scripts/delete/h/{hash} | delete script by hash (erase content but keep hash, require admin)
[**delete_script_by_path**]ScriptApi.md#delete_script_by_path | **POST** /w/{workspace}/scripts/delete/p/{path} | delete script at a given path (require admin)
[**delete_scripts_bulk**]ScriptApi.md#delete_scripts_bulk | **DELETE** /w/{workspace}/scripts/delete_bulk | delete scripts in bulk
[**diff_raw_scripts_with_deployed**]ScriptApi.md#diff_raw_scripts_with_deployed | **POST** /w/{workspace}/scripts/raw_temp/diff | diff local script hashes against deployed versions
[**exists_script_by_path**]ScriptApi.md#exists_script_by_path | **GET** /w/{workspace}/scripts/exists/p/{path} | exists script by path
[**get_ci_test_results**]ScriptApi.md#get_ci_test_results | **GET** /w/{workspace}/scripts/ci_test_results/{kind}/{path} | get CI test results for a script, flow, or resource
[**get_ci_test_results_batch**]ScriptApi.md#get_ci_test_results_batch | **POST** /w/{workspace}/scripts/ci_test_results_batch | get CI test results for multiple items
[**get_hub_script_by_path**]ScriptApi.md#get_hub_script_by_path | **GET** /scripts/hub/get_full/{path} | get full hub script by path
[**get_hub_script_content_by_path**]ScriptApi.md#get_hub_script_content_by_path | **GET** /scripts/hub/get/{path} | get hub script content by path
[**get_script_by_hash**]ScriptApi.md#get_script_by_hash | **GET** /w/{workspace}/scripts/get/h/{hash} | get script by hash
[**get_script_by_path**]ScriptApi.md#get_script_by_path | **GET** /w/{workspace}/scripts/get/p/{path} | get script by path
[**get_script_by_path_with_draft**]ScriptApi.md#get_script_by_path_with_draft | **GET** /w/{workspace}/scripts/get/draft/{path} | get script by path with draft
[**get_script_deployment_status**]ScriptApi.md#get_script_deployment_status | **GET** /w/{workspace}/scripts/deployment_status/h/{hash} | get script deployment status
[**get_script_history_by_path**]ScriptApi.md#get_script_history_by_path | **GET** /w/{workspace}/scripts/history/p/{path} | get history of a script by path
[**get_script_latest_version**]ScriptApi.md#get_script_latest_version | **GET** /w/{workspace}/scripts/get_latest_version/{path} | get scripts's latest version (hash)
[**get_top_hub_scripts**]ScriptApi.md#get_top_hub_scripts | **GET** /scripts/hub/top | get top hub scripts
[**get_triggers_count_of_script**]ScriptApi.md#get_triggers_count_of_script | **GET** /w/{workspace}/scripts/get_triggers_count/{path} | get triggers count of script
[**list_dedicated_with_deps**]ScriptApi.md#list_dedicated_with_deps | **GET** /w/{workspace}/scripts/list_dedicated_with_deps | list dedicated worker scripts with workspace dependency annotations
[**list_script_paths**]ScriptApi.md#list_script_paths | **GET** /w/{workspace}/scripts/list_paths | list all scripts paths
[**list_script_paths_from_workspace_runnable**]ScriptApi.md#list_script_paths_from_workspace_runnable | **GET** /w/{workspace}/scripts/list_paths_from_workspace_runnable/{path} | list script paths using provided script as a relative import
[**list_scripts**]ScriptApi.md#list_scripts | **GET** /w/{workspace}/scripts/list | list all scripts
[**list_search_script**]ScriptApi.md#list_search_script | **GET** /w/{workspace}/scripts/list_search | list scripts for search
[**list_tokens_of_script**]ScriptApi.md#list_tokens_of_script | **GET** /w/{workspace}/scripts/list_tokens/{path} | get tokens with script scope
[**pick_hub_script_by_path**]ScriptApi.md#pick_hub_script_by_path | **GET** /scripts/hub/pick/{path} | record hub script pick
[**query_hub_scripts**]ScriptApi.md#query_hub_scripts | **GET** /embeddings/query_hub_scripts | query hub scripts by similarity
[**raw_script_by_hash**]ScriptApi.md#raw_script_by_hash | **GET** /w/{workspace}/scripts/raw/h/{path} | raw script by hash
[**raw_script_by_path**]ScriptApi.md#raw_script_by_path | **GET** /w/{workspace}/scripts/raw/p/{path} | raw script by path
[**raw_script_by_path_tokened**]ScriptApi.md#raw_script_by_path_tokened | **GET** /scripts_u/tokened_raw/{workspace}/{token}/{path} | raw script by path with a token (mostly used by lsp to be used with import maps to resolve scripts)
[**store_raw_script_temp**]ScriptApi.md#store_raw_script_temp | **POST** /w/{workspace}/scripts/raw_temp/store | store raw script content temporarily for CLI lock generation
[**toggle_workspace_error_handler_for_script**]ScriptApi.md#toggle_workspace_error_handler_for_script | **POST** /w/{workspace}/scripts/toggle_workspace_error_handler/p/{path} | Toggle ON and OFF the workspace error handler for a given script
[**update_script_history**]ScriptApi.md#update_script_history | **POST** /w/{workspace}/scripts/history_update/h/{hash}/p/{path} | update history of a script



## archive_script_by_hash

> models::Script archive_script_by_hash(workspace, hash)
archive script by hash

### Parameters


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

### Return type

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

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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


## archive_script_by_path

> String archive_script_by_path(workspace, path)
archive script by path

### Parameters


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

### Return type

**String**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

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

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


## create_script

> String create_script(workspace, new_script)
create script

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**workspace** | **String** |  | [required] |
**new_script** | [**NewScript**]NewScript.md | Partially filled script | [required] |

### Return type

**String**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

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

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


## delete_script_by_hash

> models::Script delete_script_by_hash(workspace, hash)
delete script by hash (erase content but keep hash, require admin)

### Parameters


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

### Return type

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

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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

> String delete_script_by_path(workspace, path, keep_captures)
delete script at a given path (require admin)

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**workspace** | **String** |  | [required] |
**path** | **String** |  | [required] |
**keep_captures** | Option<**bool**> | keep captures |  |

### Return type

**String**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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

> Vec<String> delete_scripts_bulk(workspace, delete_variables_bulk_request)
delete scripts in bulk

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**workspace** | **String** |  | [required] |
**delete_variables_bulk_request** | [**DeleteVariablesBulkRequest**]DeleteVariablesBulkRequest.md | paths to delete | [required] |

### Return type

**Vec<String>**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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


## diff_raw_scripts_with_deployed

> Vec<String> diff_raw_scripts_with_deployed(workspace, diff_raw_scripts_with_deployed_request)
diff local script hashes against deployed versions

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**workspace** | **String** |  | [required] |
**diff_raw_scripts_with_deployed_request** | [**DiffRawScriptsWithDeployedRequest**]DiffRawScriptsWithDeployedRequest.md | scripts and workspace deps to diff against deployed versions | [required] |

### Return type

**Vec<String>**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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


## exists_script_by_path

> bool exists_script_by_path(workspace, path)
exists script by path

### Parameters


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

### Return type

**bool**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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

> Vec<models::CiTestResult> get_ci_test_results(workspace, kind, path)
get CI test results for a script, flow, or resource

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**workspace** | **String** |  | [required] |
**kind** | **String** |  | [required] |
**path** | **String** |  | [required] |

### Return type

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

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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

> std::collections::HashMap<String, Vec<models::CiTestResult>> get_ci_test_results_batch(workspace, get_ci_test_results_batch_request)
get CI test results for multiple items

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**workspace** | **String** |  | [required] |
**get_ci_test_results_batch_request** | [**GetCiTestResultsBatchRequest**]GetCiTestResultsBatchRequest.md |  | [required] |

### Return type

[**std::collections::HashMap<String, Vec<models::CiTestResult>>**](Vec.md)

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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


## get_hub_script_by_path

> models::GetHubScriptByPath200Response get_hub_script_by_path(path)
get full hub script by path

### Parameters


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

### Return type

[**models::GetHubScriptByPath200Response**](getHubScriptByPath_200_response.md)

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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

> String get_hub_script_content_by_path(path)
get hub script content by path

### Parameters


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

### Return type

**String**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

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

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


## get_script_by_hash

> models::Script get_script_by_hash(workspace, hash, with_starred_info, authed)
get script by hash

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**workspace** | **String** |  | [required] |
**hash** | **String** |  | [required] |
**with_starred_info** | Option<**bool**> |  |  |
**authed** | Option<**bool**> |  |  |

### Return type

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

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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

> models::Script get_script_by_path(workspace, path, with_starred_info)
get script by path

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**workspace** | **String** |  | [required] |
**path** | **String** |  | [required] |
**with_starred_info** | Option<**bool**> |  |  |

### Return type

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

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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

> models::NewScriptWithDraft get_script_by_path_with_draft(workspace, path)
get script by path with draft

### Parameters


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

### Return type

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

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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

> models::GetScriptDeploymentStatus200Response get_script_deployment_status(workspace, hash)
get script deployment status

### Parameters


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

### Return type

[**models::GetScriptDeploymentStatus200Response**](getScriptDeploymentStatus_200_response.md)

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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

> Vec<models::ScriptHistory> get_script_history_by_path(workspace, path)
get history of a script by path

### Parameters


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

### Return type

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

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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

> models::ScriptHistory get_script_latest_version(workspace, path)
get scripts's latest version (hash)

### Parameters


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

### Return type

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

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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

> models::GetTopHubScripts200Response get_top_hub_scripts(limit, app, kind)
get top hub scripts

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**limit** | Option<**f64**> | query limit |  |
**app** | Option<**String**> | query scripts app |  |
**kind** | Option<**String**> | query scripts kind |  |

### Return type

[**models::GetTopHubScripts200Response**](getTopHubScripts_200_response.md)

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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

> models::TriggersCount get_triggers_count_of_script(workspace, path)
get triggers count of script

### Parameters


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

### Return type

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

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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


## list_dedicated_with_deps

> Vec<models::ListDedicatedWithDeps200ResponseInner> list_dedicated_with_deps(workspace)
list dedicated worker scripts with workspace dependency annotations

### Parameters


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

### Return type

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

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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


## list_script_paths

> Vec<String> list_script_paths(workspace)
list all scripts paths

### Parameters


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

### Return type

**Vec<String>**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

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

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


## list_script_paths_from_workspace_runnable

> Vec<String> list_script_paths_from_workspace_runnable(workspace, path)
list script paths using provided script as a relative import

### Parameters


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

### Return type

**Vec<String>**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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


## list_scripts

> Vec<models::Script> list_scripts(workspace, page, per_page, order_desc, created_by, path_start, path_exact, first_parent_hash, last_parent_hash, parent_hash, show_archived, include_without_main, include_draft_only, is_template, kinds, starred_only, with_deployment_msg, languages, without_description, dedicated_worker, label)
list all scripts

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**workspace** | **String** |  | [required] |
**page** | Option<**i32**> | which page to return (start at 1, default 1) |  |
**per_page** | Option<**i32**> | number of items to return for a given page (default 30, max 100) |  |
**order_desc** | Option<**bool**> | order by desc order (default true) |  |
**created_by** | Option<**String**> | filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob') |  |
**path_start** | Option<**String**> | mask to filter matching starting path |  |
**path_exact** | Option<**String**> | mask to filter exact matching path |  |
**first_parent_hash** | Option<**String**> | mask to filter scripts whom first direct parent has exact hash |  |
**last_parent_hash** | Option<**String**> | mask to filter scripts whom last parent in the chain has exact hash. Beware that each script stores only a limited number of parents. Hence the last parent hash for a script is not necessarily its top-most parent. To find the top-most parent you will have to jump from last to last hash  until finding the parent  |  |
**parent_hash** | Option<**String**> | is the hash present in the array of stored parent hashes for this script. The same warning applies than for last_parent_hash. A script only store a limited number of direct parent  |  |
**show_archived** | Option<**bool**> | (default false) show only the archived files. when multiple archived hash share the same path, only the ones with the latest create_at are ed.  |  |
**include_without_main** | Option<**bool**> | (default false) include scripts without an exported main function  |  |
**include_draft_only** | Option<**bool**> | (default false) include scripts that have no deployed version  |  |
**is_template** | Option<**bool**> | (default regardless) if true show only the templates if false show only the non templates if not defined, show all regardless of if the script is a template  |  |
**kinds** | Option<**String**> | (default regardless) script kinds to filter, split by comma  |  |
**starred_only** | Option<**bool**> | (default false) show only the starred items  |  |
**with_deployment_msg** | Option<**bool**> | (default false) include deployment message  |  |
**languages** | Option<**String**> | Filter to only include scripts written in the given languages. Accepts multiple values as a comma-separated list.  |  |
**without_description** | Option<**bool**> | (default false) If true, the description field will be omitted from the response.  |  |
**dedicated_worker** | Option<**bool**> | (default regardless) If true, show only scripts with dedicated_worker enabled. If false, show only scripts with dedicated_worker disabled.  |  |
**label** | Option<**String**> | Filter by label |  |

### Return type

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

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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


## list_search_script

> Vec<models::ListSearchScript200ResponseInner> list_search_script(workspace)
list scripts for search

### Parameters


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

### Return type

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

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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


## list_tokens_of_script

> Vec<models::TruncatedToken> list_tokens_of_script(workspace, path)
get tokens with script scope

### Parameters


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

### Return type

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

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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


## pick_hub_script_by_path

> models::PickHubScriptByPath200Response pick_hub_script_by_path(path)
record hub script pick

### Parameters


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

### Return type

[**models::PickHubScriptByPath200Response**](pickHubScriptByPath_200_response.md)

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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


## query_hub_scripts

> Vec<models::QueryHubScripts200ResponseInner> query_hub_scripts(text, kind, limit, app)
query hub scripts by similarity

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**text** | **String** | query text | [required] |
**kind** | Option<**String**> | query scripts kind |  |
**limit** | Option<**f64**> | query limit |  |
**app** | Option<**String**> | query scripts app |  |

### Return type

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

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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


## raw_script_by_hash

> String raw_script_by_hash(workspace, path)
raw script by hash

### Parameters


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

### Return type

**String**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

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

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


## raw_script_by_path

> String raw_script_by_path(workspace, path)
raw script by path

### Parameters


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

### Return type

**String**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

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

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


## raw_script_by_path_tokened

> String raw_script_by_path_tokened(workspace, token, path)
raw script by path with a token (mostly used by lsp to be used with import maps to resolve scripts)

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**workspace** | **String** |  | [required] |
**token** | **String** |  | [required] |
**path** | **String** |  | [required] |

### Return type

**String**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

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

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


## store_raw_script_temp

> String store_raw_script_temp(workspace, body)
store raw script content temporarily for CLI lock generation

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**workspace** | **String** |  | [required] |
**body** | **String** | script content to store | [required] |

### Return type

**String**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

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


## toggle_workspace_error_handler_for_script

> String toggle_workspace_error_handler_for_script(workspace, path, toggle_workspace_error_handler_for_script_request)
Toggle ON and OFF the workspace error handler for a given script

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**workspace** | **String** |  | [required] |
**path** | **String** |  | [required] |
**toggle_workspace_error_handler_for_script_request** | [**ToggleWorkspaceErrorHandlerForScriptRequest**]ToggleWorkspaceErrorHandlerForScriptRequest.md | Workspace error handler enabled | [required] |

### Return type

**String**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

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

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


## update_script_history

> String update_script_history(workspace, hash, path, update_script_history_request)
update history of a script

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**workspace** | **String** |  | [required] |
**hash** | **String** |  | [required] |
**path** | **String** |  | [required] |
**update_script_history_request** | [**UpdateScriptHistoryRequest**]UpdateScriptHistoryRequest.md | Script deployment message | [required] |

### Return type

**String**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

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

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