-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopenapi.json
3841 lines (3841 loc) · 119 KB
/
openapi.json
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
{
"openapi": "3.1.0",
"info": {
"title": "Zapier AI Actions API V2",
"version": "1.0.0",
"description": ""
},
"paths": {
"/api/v2/health/": {
"get": {
"operationId": "api_meta_app_health_check",
"summary": "App Health Check",
"parameters": [],
"responses": {
"200": {
"description": "OK"
}
},
"description": "Check that the app is up and running.",
"tags": ["meta"],
"security": [
{
"AccessPointApiKeyHeader": []
},
{
"SessionAuth": []
},
{
"AccessPointApiKeyQuery": []
},
{
"AccessPointOAuth": []
}
]
}
},
"/api/v2/auth/check/": {
"get": {
"operationId": "api_meta_check_user_auth",
"summary": "Check User Auth",
"parameters": [],
"responses": {
"200": {
"description": "OK"
}
},
"description": "Test that the API and auth are working.",
"tags": ["meta"],
"security": [
{
"MonolithUserJWTHeader": []
},
{
"AccessPointApiKeyHeader": []
},
{
"AccessPointApiKeyQuery": []
},
{
"AccessPointOAuth": []
},
{
"SessionAuth": []
}
]
}
},
"/api/v2/auth/accounts/": {
"get": {
"operationId": "api_meta_get_account_list",
"summary": "Get Account List",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GenericResults_AccountInfo_"
}
}
}
}
},
"description": "Get a list of Zapier accounts for the current user.",
"tags": ["meta"],
"security": [
{
"MonolithUserJWTHeader": []
},
{
"AccessPointApiKeyHeader": []
},
{
"AccessPointApiKeyQuery": []
},
{
"AccessPointOAuth": []
},
{
"SessionAuth": []
}
]
}
},
"/api/v2/auth/login-link/": {
"get": {
"operationId": "api_meta_get_user_login_link",
"summary": "Get User Login Link",
"parameters": [
{
"in": "query",
"name": "sign_up_first_name",
"schema": {
"description": "The first name of the user.",
"title": "Sign Up First Name",
"type": "string"
},
"required": true,
"description": "The first name of the user."
},
{
"in": "query",
"name": "sign_up_last_name",
"schema": {
"description": "The last name of the user.",
"title": "Sign Up Last Name",
"type": "string"
},
"required": true,
"description": "The last name of the user."
},
{
"in": "query",
"name": "sign_up_email",
"schema": {
"description": "The email of the user. If an account for this email already exists, the user will instead be asked to login.",
"title": "Sign Up Email",
"type": "string"
},
"required": true,
"description": "The email of the user. If an account for this email already exists, the user will instead be asked to login."
},
{
"in": "query",
"name": "redirect_to",
"schema": {
"default": "/config/login-success",
"description": "The AI Actions URL to redirect the user to after login. If you have an OAuth client, you can use this to redirect to the consent screen for your OAuth application.",
"title": "Redirect To",
"type": "string"
},
"required": false,
"description": "The AI Actions URL to redirect the user to after login. If you have an OAuth client, you can use this to redirect to the consent screen for your OAuth application."
}
],
"responses": {
"200": {
"description": "OK"
}
},
"description": "This will create a link that can be used for \"quick account creation\" for a user.\n\nWhen going to this link, if the provided email already has a Zapier account, the user will be asked to log in.\nIf the email does not have a Zapier account, the user will be asked to create an account with the provided email and name.\n\nUpon creating an account or logging in, the user will be taken to the `redirect_to` URL.\n\nA suggested flow for this is:\n- Check if you have an AI Actions OAuth token for a user\n- If you do not, send the user to a page on your site for initiating PKCE OAuth flow, storing the `code_verifier` for them securely.\n- Use this endpoint, with a `redirect_to` of `https://actions.zapier.com/oauth/authorize/` with the following query parameters:\n - client_id: Your AI Actions OAuth client ID\n - scope: `openid nla:exposed_actions:execute`\n - response_type: `code`\n - redirect_uri: The URL on your site that will handle the OAuth callback, must be in the list of allowed redirect URIs for your AI Actions OAuth client.\n - code_challenge: The SHA256 hash of the `code_verifier` from the previous step.\n - code_challenge_method: `S256`\n\nThe user will get a Zapier account, be brought to AI Actions where they will see the OAuth consent screen, and then will be brought back to your site\nwith an OAuth `code` that can be used with `https://actions.zapier.com/oauth/token/` with the following data in the body with `Content-Type: application/x-www-form-urlencoded`:\n - client_id: Your AI Actions OAuth client ID\n - grant_type: `authorization_code`\n - code_verifier: The verifier stored for your user when generating the login URL\n - redirect_uri: The same URL you used for the `redirect_uri` in the previous step.\n - code: The code in the query parameters of the URL that the user was redirected to.",
"tags": ["meta"],
"security": [
{
"AccessPointApiKeyHeader": []
},
{
"SessionAuth": []
},
{
"AccessPointApiKeyQuery": []
},
{
"AccessPointOAuth": []
}
]
}
},
"/api/v2/shrink-result/": {
"post": {
"operationId": "api_meta_shrink_result",
"summary": "Shrink Result",
"parameters": [
{
"in": "query",
"name": "app",
"schema": {
"description": "App to use when shrinking values. Providing an app, action, and action type will help with improving the accuracy of the shrinking.",
"title": "App",
"type": "string"
},
"required": false,
"description": "App to use when shrinking values. Providing an app, action, and action type will help with improving the accuracy of the shrinking."
},
{
"in": "query",
"name": "action",
"schema": {
"description": "Action to use when shrinking values. Must be provided if `app` is provided.",
"title": "Action",
"type": "string"
},
"required": false,
"description": "Action to use when shrinking values. Must be provided if `app` is provided."
},
{
"in": "query",
"name": "action_type",
"schema": {
"description": "Type of action to use when shrinking values. Must be provided if `action` is provided.",
"title": "Action Type",
"type": "string"
},
"required": false,
"description": "Type of action to use when shrinking values. Must be provided if `action` is provided."
},
{
"in": "query",
"name": "keep",
"schema": {
"description": "A comma-separate list of field names to keep around. Fields in this list will never be shrunken and will remain as-is in the response.",
"title": "Keep",
"type": "string"
},
"required": false,
"description": "A comma-separate list of field names to keep around. Fields in this list will never be shrunken and will remain as-is in the response."
},
{
"in": "query",
"name": "token_budget",
"schema": {
"default": 1000,
"description": "Maximum number of [tokens](https://help.openai.com/en/articles/4936856-what-are-tokens-and-how-to-count-them) to include in the response.",
"title": "Token Budget",
"type": "integer"
},
"required": false,
"description": "Maximum number of [tokens](https://help.openai.com/en/articles/4936856-what-are-tokens-and-how-to-count-them) to include in the response."
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ShrinkResultResult"
}
}
}
}
},
"description": "**WARNING: This endpoint is not officially supported, and is subject to be changed or removed at any time.**\n\nShrinks the given result payload to git into a specified token budget.\n\nThis tries its best to keep around more important values and truncate less important ones.\n\nThe intent of this endpoint is that after executing an AI Action, you can pass the result into this to get a smaller result that can be passed in to LLMs without hitting the token limit.",
"tags": ["meta"],
"requestBody": {
"content": {
"application/json": {
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/ResultToShrink"
}
],
"default": {
"result": {},
"result_field_labels": {}
}
}
}
},
"required": false
},
"security": [
{
"MonolithUserJWTHeader": []
},
{
"AccessPointApiKeyHeader": []
},
{
"AccessPointApiKeyQuery": []
},
{
"AccessPointOAuth": []
},
{
"SessionAuth": []
}
]
}
},
"/api/v2/apps/search/": {
"get": {
"operationId": "api_search_search_apps",
"summary": "Search Apps",
"parameters": [
{
"in": "query",
"name": "query",
"schema": {
"title": "Query",
"type": "string"
},
"required": false
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GenericResults_AppSchema_"
}
}
}
}
},
"tags": ["actions"],
"security": [
{
"MonolithUserJWTHeader": []
},
{
"AccessPointApiKeyHeader": []
},
{
"AccessPointApiKeyQuery": []
},
{
"AccessPointOAuth": []
},
{
"SessionAuth": []
}
]
}
},
"/api/v2/apps/{app}/actions/": {
"get": {
"operationId": "api_search_search_actions",
"summary": "Search Actions",
"parameters": [
{
"in": "path",
"name": "app",
"schema": {
"description": "The application to list actions for.",
"title": "App",
"type": "string"
},
"required": true,
"description": "The application to list actions for."
},
{
"in": "query",
"name": "query",
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Query for actions to search for. If this is not provided, all actions for the `app` will be returned.",
"title": "Query"
},
"required": false,
"description": "Query for actions to search for. If this is not provided, all actions for the `app` will be returned."
},
{
"in": "query",
"name": "filter_action_type",
"schema": {
"default": ["write", "search"],
"description": "\nFilter actions by type. This should be a comma-separated list of action types.\n \nThis can be:\n- `write`: Actions that have side effects (such as sending an email or updating a spreadsheet)\n- `search`: Actions that return results (such as searching for a contact or getting a list of emails)\n",
"items": {
"enum": ["read", "write", "search"],
"title": "ActionType",
"type": "string"
},
"title": "Filter Action Type",
"type": "array",
"uniqueItems": true
},
"required": false,
"description": "\nFilter actions by type. This should be a comma-separated list of action types.\n \nThis can be:\n- `write`: Actions that have side effects (such as sending an email or updating a spreadsheet)\n- `search`: Actions that return results (such as searching for a contact or getting a list of emails)\n"
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GenericResults_ActionSchema_"
}
}
}
}
},
"description": "Search for Zapier actions by app, ordered by relevancy.",
"tags": ["actions"],
"security": [
{
"MonolithUserJWTHeader": []
},
{
"AccessPointApiKeyHeader": []
},
{
"AccessPointApiKeyQuery": []
},
{
"AccessPointOAuth": []
},
{
"SessionAuth": []
}
]
}
},
"/api/v2/apps/{app}/": {
"get": {
"operationId": "api_actions_get_app_details",
"summary": "Get App Details",
"parameters": [
{
"in": "path",
"name": "app",
"schema": {
"description": "The app to get details for.",
"title": "App",
"type": "string"
},
"required": true,
"description": "The app to get details for."
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GenericResults_AppDetailsSchema_"
}
}
}
}
},
"tags": ["actions"],
"security": [
{
"MonolithUserJWTHeader": []
},
{
"AccessPointApiKeyHeader": []
},
{
"AccessPointApiKeyQuery": []
},
{
"AccessPointOAuth": []
},
{
"SessionAuth": []
}
]
}
},
"/api/v2/apps/{app}/auths/": {
"get": {
"operationId": "api_actions_list_authentications_for_app",
"summary": "List Authentications For App",
"parameters": [
{
"in": "path",
"name": "app",
"schema": {
"description": "The app to get authentications for.",
"title": "App",
"type": "string"
},
"required": true,
"description": "The app to get authentications for."
},
{
"in": "query",
"name": "account_id",
"schema": {
"description": "The Zapier account ID to get authentications for.",
"title": "Account Id",
"type": "integer"
},
"required": false,
"description": "The Zapier account ID to get authentications for."
},
{
"in": "query",
"name": "only_owned",
"schema": {
"default": false,
"description": "\nIf this is `true`, only authentications that are owned by the authenticated user will be returned.\n \nIf this is `false`, then authentications that are shared with the user will also be returned.\n",
"title": "Only Owned",
"type": "boolean"
},
"required": false,
"description": "\nIf this is `true`, only authentications that are owned by the authenticated user will be returned.\n \nIf this is `false`, then authentications that are shared with the user will also be returned.\n"
},
{
"in": "query",
"name": "force_refresh",
"schema": {
"default": false,
"description": "\nThe list of authentications is cached for 24 hours.\n \nIf `force_refresh` is set to `true`, the cache will be refreshed. This should only be used when the list of authentications has changed.\n \nBest practice is to offer a \"Refresh\" button to users that sets this to `true` for one request.\n",
"title": "Force Refresh",
"type": "boolean"
},
"required": false,
"description": "\nThe list of authentications is cached for 24 hours.\n \nIf `force_refresh` is set to `true`, the cache will be refreshed. This should only be used when the list of authentications has changed.\n \nBest practice is to offer a \"Refresh\" button to users that sets this to `true` for one request.\n"
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ListAuthenticationsForAppResultSchema"
}
}
}
}
},
"description": "Get list of Zapier authentications associated with the requesting user and account.",
"tags": ["actions"],
"security": [
{
"MonolithUserJWTHeader": []
},
{
"AccessPointApiKeyHeader": []
},
{
"AccessPointApiKeyQuery": []
},
{
"AccessPointOAuth": []
},
{
"SessionAuth": []
}
]
}
},
"/api/v2/apps/{app}/actions/{action}/": {
"post": {
"operationId": "api_actions_get_action_details",
"summary": "Get Action Details",
"parameters": [
{
"in": "path",
"name": "app",
"schema": {
"description": "The app that the action belongs to.",
"title": "App",
"type": "string"
},
"required": true,
"description": "The app that the action belongs to."
},
{
"in": "path",
"name": "action",
"schema": {
"description": "The action to get details for.",
"title": "Action",
"type": "string"
},
"required": true,
"description": "The action to get details for."
},
{
"in": "query",
"name": "action_type",
"schema": {
"allOf": [
{
"enum": ["read", "write", "search"],
"title": "ActionType",
"type": "string"
}
],
"default": "write",
"description": "The type of the action to get details for.\n \nThis can be:\n- `write`: Actions that have side effects (such as sending an email or updating a spreadsheet)\n- `search`: Actions that return results (such as searching for a contact or getting a list of emails)\n"
},
"required": false,
"description": "The type of the action to get details for.\n \nThis can be:\n- `write`: Actions that have side effects (such as sending an email or updating a spreadsheet)\n- `search`: Actions that return results (such as searching for a contact or getting a list of emails)\n"
},
{
"in": "query",
"name": "account_id",
"schema": {
"description": "\nThe Zapier account ID to use.\n\nAccount IDs available to the user can be listed using the [Get Account List](/docs/api-reference/meta/get-account-list) endpoint \n",
"title": "Account Id",
"type": "integer"
},
"required": false,
"description": "\nThe Zapier account ID to use.\n\nAccount IDs available to the user can be listed using the [Get Account List](/docs/api-reference/meta/get-account-list) endpoint \n"
},
{
"in": "query",
"name": "authentication_id",
"schema": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"description": "\nID of the authentication to use for the app.\n\nAuthentications available to the user can be listed using the [List Authentications For App](/docs/api-reference/actions/list-authentications-for-app) endpoint.\n",
"title": "Authentication Id"
},
"required": false,
"description": "\nID of the authentication to use for the app.\n\nAuthentications available to the user can be listed using the [List Authentications For App](/docs/api-reference/actions/list-authentications-for-app) endpoint.\n"
},
{
"in": "query",
"name": "action_extra",
"schema": {
"default": ["action_needs"],
"description": "\nWhat kind of information to return with the action details.\n \nList of:\n- `action_needs`: Include the needs of the action. These are what are provided when running the action. \n- `action_gives`: Include the gives of the action. These are what the action returns when it runs.\n- `action_sample`: Include a sample of the action. **Note:** This will dramatically slow down the response from this endpoint. Only use it if you really need the sample.\n",
"items": {
"enum": ["action_needs", "action_gives", "action_sample"],
"title": "ActionExtra",
"type": "string"
},
"title": "Action Extra",
"type": "array",
"uniqueItems": true
},
"required": false,
"description": "\nWhat kind of information to return with the action details.\n \nList of:\n- `action_needs`: Include the needs of the action. These are what are provided when running the action. \n- `action_gives`: Include the gives of the action. These are what the action returns when it runs.\n- `action_sample`: Include a sample of the action. **Note:** This will dramatically slow down the response from this endpoint. Only use it if you really need the sample.\n"
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GenericResults_ActionDetailsResultSchema_"
}
}
}
}
},
"description": "Get details of a specific action, including its needs, gives, and a sample of the action.",
"tags": ["actions"],
"requestBody": {
"content": {
"application/json": {
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/ActionDetailsBodySchema"
}
],
"default": {
"params": {}
}
}
}
},
"required": false
},
"security": [
{
"MonolithUserJWTHeader": []
},
{
"AccessPointApiKeyHeader": []
},
{
"AccessPointApiKeyQuery": []
},
{
"AccessPointOAuth": []
},
{
"SessionAuth": []
}
]
}
},
"/api/v2/apps/{app}/choices/{prefill}/": {
"post": {
"operationId": "api_actions_get_prefill_choices",
"summary": "Get Prefill Choices",
"parameters": [
{
"in": "path",
"name": "app",
"schema": {
"description": "The app that the prefill belongs to.",
"title": "App",
"type": "string"
},
"required": true,
"description": "The app that the prefill belongs to."
},
{
"in": "path",
"name": "prefill",
"schema": {
"description": "The prefill to get choices for.",
"title": "Prefill",
"type": "string"
},
"required": true,
"description": "The prefill to get choices for."
},
{
"in": "query",
"name": "authentication_id",
"schema": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"description": "\nID of the authentication to use for the app.\n\nAuthentications available to the user can be listed using the [List Authentications For App](/docs/api-reference/actions/list-authentications-for-app) endpoint.\n",
"title": "Authentication Id"
},
"required": false,
"description": "\nID of the authentication to use for the app.\n\nAuthentications available to the user can be listed using the [List Authentications For App](/docs/api-reference/actions/list-authentications-for-app) endpoint.\n"
},
{
"in": "query",
"name": "account_id",
"schema": {
"description": "\nThe Zapier account ID to use.\n\nAccount IDs available to the user can be listed using the [Get Account List](/docs/api-reference/meta/get-account-list) endpoint \n",
"title": "Account Id",
"type": "integer"
},
"required": false,
"description": "\nThe Zapier account ID to use.\n\nAccount IDs available to the user can be listed using the [Get Account List](/docs/api-reference/meta/get-account-list) endpoint \n"
},
{
"in": "query",
"name": "query",
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Optional query to filter results by.",
"title": "Query"
},
"required": false,
"description": "Optional query to filter results by."
},
{
"in": "query",
"name": "force_refresh",
"schema": {
"default": false,
"description": "\nThe list of prefill options for each user/app/prefill combo is cached for 24 hours.\n \nIf `force_refresh` is set to `true`, the cache will be refreshed. This should only be used when the list of prefill options is known to have changed.\n \nBest practice is to offer a \"Refresh\" button to the user that sets this to `true` for one request.\n",
"title": "Force Refresh",
"type": "boolean"
},
"required": false,
"description": "\nThe list of prefill options for each user/app/prefill combo is cached for 24 hours.\n \nIf `force_refresh` is set to `true`, the cache will be refreshed. This should only be used when the list of prefill options is known to have changed.\n \nBest practice is to offer a \"Refresh\" button to the user that sets this to `true` for one request.\n"
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PrefillChoicesResultsSchema"
}
}
}
}
},
"description": "Get prefill choices for an app's prefill.",
"tags": ["actions"],
"requestBody": {
"content": {
"application/json": {
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/ActionDetailsParamsSchema"
}
],
"default": {
"params": {}
}
}
}
},
"required": false
},
"security": [
{
"MonolithUserJWTHeader": []
},
{
"AccessPointApiKeyHeader": []
},
{
"AccessPointApiKeyQuery": []
},
{
"AccessPointOAuth": []
},
{
"SessionAuth": []
}
]
}
},
"/api/v2/execute/": {
"post": {
"operationId": "api_execute_execute_stateless_action",
"summary": "Execute Stateless Action",
"parameters": [
{
"in": "query",
"name": "provider_id",
"schema": {
"description": "Provider ID for AI Actions. If you don't know what your provider ID is, [please contact support](https://nla.zapier.app/_z/embed/page/clh5sdteo0001ml0pdz8a2aqr?&)",
"title": "Provider Id",
"type": "string"
},
"required": false,
"description": "Provider ID for AI Actions. If you don't know what your provider ID is, [please contact support](https://nla.zapier.app/_z/embed/page/clh5sdteo0001ml0pdz8a2aqr?&)"
},
{
"in": "query",
"name": "token_budget",
"schema": {
"default": 1000,
"description": "\nMaximum number of [tokens](https://help.openai.com/en/articles/4936856-what-are-tokens-and-how-to-count-them) to use for each field.\n \nWhen this limit is exceeded in the response from the execution, values will be truncated to fit inside of it.\n\nIf this is increased too much, running an action may fail if its results get outside of the context window of the LLM.\n",
"title": "Token Budget",
"type": "integer"
},
"required": false,
"description": "\nMaximum number of [tokens](https://help.openai.com/en/articles/4936856-what-are-tokens-and-how-to-count-them) to use for each field.\n \nWhen this limit is exceeded in the response from the execution, values will be truncated to fit inside of it.\n\nIf this is increased too much, running an action may fail if its results get outside of the context window of the LLM.\n"
},
{
"in": "query",
"name": "preview_only",
"schema": {
"default": false,
"description": "\nIf this is true, then the action will not actually be executed and instead the resolved params will come back.\n",
"title": "Preview Only",
"type": "boolean"
},
"required": false,
"description": "\nIf this is true, then the action will not actually be executed and instead the resolved params will come back.\n"
},
{
"in": "query",
"name": "skip_param_guessing",
"schema": {
"default": false,
"description": "\nIf set to `True`, AI Actions will make a direct invocation call without attempting to guess params.\n\nWhen `skip_param_guessing` is `True`, all params must be set to either 'locked' or 'ignored' mode.\nOtherwise, an error will be raised.\n\nNote: `skip_param_guessing` is mutually exclusive with `preview_only`. When `skip_param_guessing` is `True`, `preview_only` must be `False`, and vice versa.\n",
"title": "Skip Param Guessing",
"type": "boolean"
},
"required": false,
"description": "\nIf set to `True`, AI Actions will make a direct invocation call without attempting to guess params.\n\nWhen `skip_param_guessing` is `True`, all params must be set to either 'locked' or 'ignored' mode.\nOtherwise, an error will be raised.\n\nNote: `skip_param_guessing` is mutually exclusive with `preview_only`. When `skip_param_guessing` is `True`, `preview_only` must be `False`, and vice versa.\n"
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ExecuteResponse"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
}
}
},
"412": {
"description": "Precondition Failed",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
}
}
},
"422": {
"description": "Unprocessable Entity",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
}
}
}
},
"tags": ["execution"],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/StatelessExecuteRequest"
}
}
},
"required": true
},
"security": [
{
"AccessPointApiKeyHeader": []
},
{
"SessionAuth": []
},
{
"AccessPointApiKeyQuery": []
},
{
"AccessPointOAuth": []
}
]
}
},
"/api/v2/ai-actions/": {
"get": {
"operationId": "api_ai_actions_list_ai_actions",
"summary": "List AI Actions",
"parameters": [],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ExposedActionResponseSchema"
}
}
}
}
},
"description": "List all the current actions for the current user.",
"tags": ["ai-actions"],
"security": [
{
"MonolithUserJWTHeader": []
},
{
"AccessPointApiKeyHeader": []
},
{
"AccessPointApiKeyQuery": []
},
{
"AccessPointOAuth": []
},
{
"SessionAuth": []
}
]
},
"post": {
"operationId": "api_ai_actions_create_ai_action",
"summary": "Create AI Action",