-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathworkato-api-spec.yaml
More file actions
3297 lines (3190 loc) · 91.9 KB
/
Copy pathworkato-api-spec.yaml
File metadata and controls
3297 lines (3190 loc) · 91.9 KB
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.0.3
info:
title: Workato Platform API
description: |
Official Workato Platform API for managing recipes, connections, projects, and other automation resources.
## Authentication
All endpoints require a Bearer token in the Authorization header.
## Base URL
The base URL varies by region:
- US: `https://www.workato.com`
- EU: `https://app.eu.workato.com`
- JP: `https://app.jp.workato.com`
- SG: `https://app.sg.workato.com`
- AU: `https://app.au.workato.com`
- IL: `https://app.il.workato.com`
- Trial: `https://app.trial.workato.com`
version: 1.0.0
contact:
name: Workato API Support
url: https://docs.workato.com
license:
name: MIT
url: https://opensource.org/licenses/MIT
servers:
- url: https://www.workato.com
description: US Data Center
- url: https://app.eu.workato.com
description: EU Data Center
- url: https://app.jp.workato.com
description: JP Data Center
- url: https://app.sg.workato.com
description: SG Data Center
- url: https://app.au.workato.com
description: AU Data Center
- url: https://app.il.workato.com
description: IL Data Center
- url: https://app.trial.workato.com
description: Developer Sandbox
security:
- BearerAuth: []
paths:
/api/users/me:
get:
operationId: get_workspace_details
summary: Get current user information
description: Returns information about the authenticated user
tags:
- Users
responses:
"200":
description: User information retrieved successfully
content:
application/json:
schema:
$ref: "#/components/schemas/User"
"401":
$ref: "#/components/responses/UnauthorizedError"
/api/projects:
get:
operationId: list_projects
summary: List projects
description: Returns a list of projects belonging to the authenticated user with pagination support
tags:
- Projects
parameters:
- name: page
in: query
description: Page number
schema:
type: integer
default: 1
minimum: 1
- name: per_page
in: query
description: Number of projects per page
schema:
type: integer
default: 100
minimum: 1
maximum: 100
responses:
"200":
description: List of projects retrieved successfully
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Project"
"401":
$ref: "#/components/responses/UnauthorizedError"
/api/projects/{project_id}:
delete:
operationId: delete_project
summary: Delete a project
description: |
Delete a project and all of its contents. This includes all child folders,
recipes, connections, and Workflow apps assets inside the project.
tags:
- Projects
parameters:
- name: project_id
in: path
required: true
description: The ID of the project to delete
schema:
type: integer
responses:
"200":
description: Project deleted successfully
content:
application/json:
schema:
$ref: "#/components/schemas/SuccessResponse"
"401":
$ref: "#/components/responses/UnauthorizedError"
"403":
description: Permission denied
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: "Cannot destroy folder"
/api/properties:
get:
operationId: list_project_properties
summary: List project properties
description: |
Returns a list of project-level properties belonging to a specific project in a
customer workspace that matches a project_id you specify. You must also include
a prefix. For example, if you provide the prefix salesforce_sync., any project
property with a name beginning with salesforce_sync., such as
salesforce_sync.admin_email, with the project_id you provided is returned.
tags:
- Properties
parameters:
- name: prefix
in: query
required: true
description: |
Returns properties that contain the prefix you provided. For example, if the
prefix is salesforce_sync. the property salesforce_sync.admin_email is returned.
schema:
type: string
example: "salesforce_sync."
- name: project_id
in: query
required: true
description: |
Returns project-level properties that match the project_id you specify. If this
parameter is not present, this call returns environment properties.
schema:
type: integer
example: 523144
responses:
"200":
description: Project properties retrieved successfully
content:
application/json:
schema:
$ref: "#/components/schemas/ProjectPropertiesResponse"
"401":
$ref: "#/components/responses/UnauthorizedError"
post:
operationId: upsert_project_properties
summary: Upsert project properties
description: |
Upserts project properties belonging to a specific project in a customer workspace
that matches a project_id you specify. This endpoint maps to properties based on
the names you provide in the request.
## Property Limits
- Maximum number of project properties per project: 1,000
- Maximum length of project property name: 100 characters
- Maximum length of project property value: 1,024 characters
tags:
- Properties
parameters:
- name: project_id
in: query
required: true
description: |
Provide the project ID that contains the project properties you plan to upsert.
If this parameter is not present, this call upserts environment properties.
schema:
type: integer
example: 523144
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/UpsertProjectPropertiesRequest"
responses:
"200":
description: Project properties upserted successfully
content:
application/json:
schema:
$ref: "#/components/schemas/SuccessResponse"
"400":
$ref: "#/components/responses/BadRequestError"
"401":
$ref: "#/components/responses/UnauthorizedError"
/api/folders:
get:
operationId: list_folders
summary: List folders
description: Lists all folders.
tags:
- Folders
parameters:
- name: parent_id
in: query
description: Parent folder ID. Defaults to Home folder.
schema:
type: integer
- name: page
in: query
description: Page number. Defaults to 1.
schema:
type: integer
default: 1
minimum: 1
- name: per_page
in: query
description: Page size. Defaults to 100 (maximum is 100).
schema:
type: integer
default: 100
maximum: 100
responses:
"200":
description: List of folders retrieved successfully
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Folder"
"401":
$ref: "#/components/responses/UnauthorizedError"
post:
operationId: create_folder
summary: Create a folder
description: |
Creates a new folder in the specified parent folder. If no parent folder ID
is specified, creates the folder as a top-level folder in the home folder.
tags:
- Folders
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- name
properties:
name:
type: string
description: Name of the folder
example: "Salesforce folder"
parent_id:
type: string
description: Parent folder ID. Defaults to Home folder if not specified
responses:
"200":
description: Folder created successfully
content:
application/json:
schema:
$ref: "#/components/schemas/FolderCreationResponse"
"400":
$ref: "#/components/responses/BadRequestError"
"401":
$ref: "#/components/responses/UnauthorizedError"
/api/export_manifests/folder_assets:
get:
operationId: list_assets_in_folder
summary: View assets in a folder
description: |
View assets in a folder. Useful for creating or updating export manifests.
tags:
- Export
parameters:
- name: folder_id
in: query
description: The ID of the folder containing the assets
schema:
type: integer
- name: include_test_cases
in: query
description: Include test cases (currently not supported)
schema:
type: boolean
default: false
- name: include_data
in: query
description: Include data from the list of assets
schema:
type: boolean
default: false
responses:
"200":
description: Folder assets retrieved successfully
content:
application/json:
schema:
$ref: "#/components/schemas/FolderAssetsResponse"
"401":
$ref: "#/components/responses/UnauthorizedError"
/api/export_manifests:
post:
operationId: create_export_manifest
summary: Create an export manifest
description: Create an export manifest for exporting assets
tags:
- Export
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- export_manifest
properties:
export_manifest:
$ref: "#/components/schemas/ExportManifestRequest"
responses:
"201":
description: Export manifest created successfully
content:
application/json:
schema:
$ref: "#/components/schemas/ExportManifestResponse"
"400":
$ref: "#/components/responses/BadRequestError"
"401":
$ref: "#/components/responses/UnauthorizedError"
/api/packages/export/{id}:
post:
operationId: export_package
summary: Export a package based on a manifest
description: |
Export a package based on a manifest.
**ENDPOINT PRIVILEGES ALSO PROVIDE ACCESS TO ASSETS**
When you provide an API client with privileges to this endpoint, the API client
is also granted the ability to view other assets like recipes, lookup tables,
Event topics, and message templates by examining the resulting zip file.
This is an asynchronous request. Use GET package by ID endpoint to get details
of the exported package.
**INCLUDE TAGS WHEN CREATING THE EXPORT MANIFEST**
To include tags in the exported package, set the include_tags attribute to true
when calling the Create an export manifest endpoint.
tags:
- Packages
parameters:
- name: id
in: path
required: true
description: Export manifest ID
schema:
type: string
responses:
"200":
description: Export package creation triggered successfully
content:
application/json:
schema:
$ref: "#/components/schemas/PackageResponse"
"401":
$ref: "#/components/responses/UnauthorizedError"
/api/packages/{package_id}:
get:
operationId: get_package
summary: Get package details
description: Get details of an imported or exported package including status
tags:
- Packages
parameters:
- name: package_id
in: path
required: true
description: Package ID
schema:
type: integer
responses:
"200":
description: Package details retrieved successfully
content:
application/json:
schema:
$ref: "#/components/schemas/PackageDetailsResponse"
"401":
$ref: "#/components/responses/UnauthorizedError"
"404":
description: Package not found
/api/packages/{package_id}/download:
get:
operationId: download_package
summary: Download package
description: |
Downloads a package. Returns a redirect to the package content or the binary content directly.
Use the -L flag in cURL to follow redirects.
tags:
- Packages
parameters:
- name: package_id
in: path
required: true
description: Package ID
schema:
type: integer
responses:
"200":
description: Package binary content
content:
application/zip:
schema:
type: string
format: binary
description: Package zip file content
application/octet-stream:
schema:
type: string
format: binary
description: Package zip file content
"302":
description: Redirect to package download
headers:
Location:
description: URL to download the package content
schema:
type: string
format: uri
"401":
$ref: "#/components/responses/UnauthorizedError"
"404":
description: Package not found or doesn't have content
/api/packages/import/{id}:
post:
operationId: import_package
summary: Import a package into a folder
description: |
Import a package in zip file format into a folder. This endpoint allows an API client
to create or update assets, such as recipes, lookup tables, event topics, and message
templates, through package imports.
This is an asynchronous request. Use GET package by ID endpoint to get details of
the imported package.
The input (zip file) is an application/octet-stream payload containing package content.
tags:
- Packages
parameters:
- name: id
in: path
required: true
description: Folder ID
schema:
type: integer
- name: restart_recipes
in: query
description: |
Value must be true to allow the restarting of running recipes during import.
Packages cannot be imported if there are running recipes and this parameter
equals false or is not provided.
schema:
type: boolean
default: false
- name: include_tags
in: query
description: |
Specifies whether to preserve tags assigned to assets when the package is imported
into the folder. Tags are excluded from the import when set to false.
schema:
type: boolean
default: false
- name: folder_id_for_home_assets
in: query
description: |
The ID of a folder to store assets in instead of the root folder. The folder
specified must be accessible to the API client and cannot be the root folder.
This parameter is conditionally required if you are importing a package that
contains root folder assets and your workspace Home assets folder has been
converted to a Home assets project.
schema:
type: integer
default: ""
requestBody:
required: true
content:
application/octet-stream:
schema:
type: string
format: binary
description: Package zip file content
responses:
"200":
description: Package import initiated successfully
content:
application/json:
schema:
$ref: "#/components/schemas/PackageResponse"
"400":
$ref: "#/components/responses/BadRequestError"
"401":
$ref: "#/components/responses/UnauthorizedError"
/api/recipes:
get:
operationId: list_recipes
summary: List recipes
description: |
Returns a list of recipes belonging to the authenticated user.
Recipes are returned in descending ID order.
tags:
- Recipes
parameters:
- name: adapter_names_all
in: query
description: Comma-separated adapter names (recipes must use ALL)
schema:
type: string
- name: adapter_names_any
in: query
description: Comma-separated adapter names (recipes must use ANY)
schema:
type: string
- name: folder_id
in: query
description: Return recipes in specified folder
schema:
type: integer
- name: order
in: query
description: Set ordering method
schema:
type: string
enum: [activity, default]
- name: page
in: query
description: Page number
schema:
type: integer
default: 1
minimum: 1
- name: per_page
in: query
description: Number of recipes per page
schema:
type: integer
default: 100
minimum: 1
maximum: 100
- name: running
in: query
description: If true, returns only running recipes
schema:
type: boolean
- name: since_id
in: query
description: Return recipes with IDs lower than this value
schema:
type: integer
- name: stopped_after
in: query
description: Exclude recipes stopped after this date (ISO 8601 format)
schema:
type: string
format: date-time
- name: stop_cause
in: query
description: Filter by stop reason
schema:
type: string
enum:
[
trigger_errors_limit,
action_quota_limit,
trial_expired,
txn_quota_limit,
]
- name: updated_after
in: query
description: Include recipes updated after this date (ISO 8601 format)
schema:
type: string
format: date-time
- name: includes[]
in: query
description: Additional fields to include (e.g., tags)
schema:
type: array
items:
type: string
enum: [tags]
- name: exclude_code
in: query
description: Exclude recipe code from response for better performance
schema:
type: boolean
responses:
"200":
description: List of recipes retrieved successfully
content:
application/json:
schema:
$ref: "#/components/schemas/RecipeListResponse"
"401":
$ref: "#/components/responses/UnauthorizedError"
/api/recipes/{recipe_id}/stop:
put:
operationId: stop_recipe
summary: Stop a recipe
description: Stops a recipe specified by recipe ID
tags:
- Recipes
parameters:
- name: recipe_id
in: path
required: true
description: Recipe ID
schema:
type: integer
responses:
"200":
description: Recipe stopped successfully
content:
application/json:
schema:
$ref: "#/components/schemas/SuccessResponse"
"400":
description: Bad request (state transition error or recipe cannot be stopped)
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"401":
$ref: "#/components/responses/UnauthorizedError"
"404":
description: Recipe not found
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"500":
description: Internal server error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/api/recipes/{recipe_id}/start:
put:
operationId: start_recipe
summary: Start a recipe
description: Starts a recipe specified by recipe ID
tags:
- Recipes
parameters:
- name: recipe_id
in: path
required: true
description: Recipe ID
schema:
type: integer
responses:
"200":
description: Recipe start response (success or validation failure)
content:
application/json:
schema:
$ref: "#/components/schemas/RecipeStartResponse"
"400":
description: Bad request (OEM adapter usage limit or state transition error)
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"401":
$ref: "#/components/responses/UnauthorizedError"
"422":
description: Unprocessable entity (webhook registration error)
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"500":
description: Internal server error
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/api/recipes/{recipe_id}/connect:
put:
operationId: update_recipe_connection
summary: Update a connection for a recipe
description: |
Updates the chosen connection for a specific connector in a stopped recipe.
tags:
- Recipes
parameters:
- name: recipe_id
in: path
required: true
description: ID of the recipe
schema:
type: integer
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/RecipeConnectionUpdateRequest"
responses:
"200":
description: Connection updated successfully
content:
application/json:
schema:
$ref: "#/components/schemas/SuccessResponse"
"400":
description: Bad request (recipe is running or invalid parameters)
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"401":
$ref: "#/components/responses/UnauthorizedError"
"403":
description: Forbidden (no permission to update this recipe)
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
"404":
description: Recipe not found
content:
application/json:
schema:
$ref: "#/components/schemas/Error"
/api/integrations/all:
get:
operationId: list_platform_connectors
summary: List platform connectors
description: |
Returns a paginated list of all connectors and associated metadata including
triggers and actions. This includes both standard and platform connectors.
tags:
- Connectors
parameters:
- name: page
in: query
description: Page number
schema:
type: integer
default: 1
minimum: 1
- name: per_page
in: query
description: Number of records per page (max 100)
schema:
type: integer
default: 1
minimum: 1
maximum: 100
responses:
"200":
description: Platform connectors retrieved successfully
content:
application/json:
schema:
$ref: "#/components/schemas/PlatformConnectorListResponse"
"401":
$ref: "#/components/responses/UnauthorizedError"
/api/custom_connectors:
get:
operationId: list_custom_connectors
summary: List custom connectors
description: Returns a list of all custom connectors
tags:
- Connectors
responses:
"200":
description: Custom connectors retrieved successfully
content:
application/json:
schema:
$ref: "#/components/schemas/CustomConnectorListResponse"
"401":
$ref: "#/components/responses/UnauthorizedError"
/api/custom_connectors/{id}/code:
get:
operationId: get_custom_connector_code
summary: Get custom connector code
description: Fetch the code for a specific custom connector
tags:
- Connectors
parameters:
- name: id
in: path
required: true
description: The ID of the custom connector
schema:
type: integer
responses:
"200":
description: Custom connector code retrieved successfully
content:
application/json:
schema:
$ref: "#/components/schemas/CustomConnectorCodeResponse"
"401":
$ref: "#/components/responses/UnauthorizedError"
"404":
description: Custom connector not found
/api/data_tables:
get:
operationId: list_data_tables
summary: List data tables
description: Returns a list of all data tables in your workspace
tags:
- Data Tables
parameters:
- name: page
in: query
description: Page number of the data tables to fetch
schema:
type: integer
default: 1
- name: per_page
in: query
description: Page size (max 100)
schema:
type: integer
default: 100
maximum: 100
responses:
"200":
description: Data tables retrieved successfully
content:
application/json:
schema:
$ref: "#/components/schemas/DataTableListResponse"
"401":
$ref: "#/components/responses/UnauthorizedError"
post:
operationId: create_data_table
summary: Create data table
description: Creates a data table in a folder you specify
tags:
- Data Tables
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/DataTableCreateRequest"
responses:
"200":
description: Data table created successfully
content:
application/json:
schema:
$ref: "#/components/schemas/DataTableCreateResponse"
"400":
$ref: "#/components/responses/BadRequestError"
"401":
$ref: "#/components/responses/UnauthorizedError"
/api/v2/api_clients:
get:
operationId: list_api_clients
summary: List API clients (v2)
description: |
List all API clients. This endpoint includes the project_id of the API client
in the response.
tags:
- API Platform
parameters:
- name: project_id
in: query
description: The ID of a specific project. Retrieve a list of project IDs with the list projects endpoint
schema:
type: integer
- name: page
in: query
description: Page number
schema:
type: integer
default: 1
minimum: 1
- name: per_page
in: query
description: Page size. The maximum page size is 100
schema:
type: integer
default: 100
maximum: 100
- name: cert_bundle_ids
in: query
description: Filter clients by certificate bundle IDs. Returns only clients associated with the specified certificate bundles
schema:
type: array
items:
type: integer
responses:
"200":
description: List of API clients retrieved successfully
content:
application/json:
schema:
$ref: "#/components/schemas/ApiClientListResponse"
"401":
$ref: "#/components/responses/UnauthorizedError"
post:
operationId: create_api_client
summary: Create API client (v2)
description: Create a new API client within a project with various authentication methods
tags:
- API Platform
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/ApiClientCreateRequest"
responses:
"200":
description: API client created successfully
content:
application/json:
schema:
$ref: "#/components/schemas/ApiClientResponse"
"400":
$ref: "#/components/responses/BadRequestError"
"401":
$ref: "#/components/responses/UnauthorizedError"
/api/v2/api_clients/{api_client_id}/api_keys:
get:
operationId: list_api_keys
summary: List API keys
description: |
Retrieve all API keys for an API client. Provide the api_client_id parameter
to filter keys for a specific client.
tags:
- API Platform
parameters:
- name: api_client_id
in: path
required: true
description: Filter API keys for a specific API client
schema:
type: integer
responses:
"200":
description: List of API keys retrieved successfully
content:
application/json:
schema:
$ref: "#/components/schemas/ApiKeyListResponse"
"401":
$ref: "#/components/responses/UnauthorizedError"