This repository was archived by the owner on Aug 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.yml
More file actions
7905 lines (7905 loc) · 242 KB
/
schema.yml
File metadata and controls
7905 lines (7905 loc) · 242 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.0
info:
title: 'Crowdin API v2'
description: "\n# API Overview\nThe Crowdin Enterprise API is a full-featured RESTful API that allows you to create projects in Crowdin, add and update files, download translations, and more to help you easily integrate localization into your development process.\n\n## Requests\nWhen a request is successful, a response will typically be sent back in the form of a JSON object, so the Accept header should be application/json.\n\nFor the methods, where body is accepted (POST/ PATCH/ PUT) the body should be in JSON. This is done by setting the Content-Type header to application/json. This ensures that your request is interpreted correctly.\n\nRESTful APIs enable you to call individual API endpoints to perform the following actions:\n\n * GET - retrieve specific information, which may include arrays and sets of data and information.\n * POST - create/add a new element.\n * PUT - replace an existing element.\n * PATCH - update only specified fields of an entity.\n * DELETE - remove/delete an element.\n\n## Authentication\nThe Crowdin API uses authentication with an account-key and login, that should be passed as an HTTP query string parameter.\n\nTo find your account API key you have to log in to your Crowdin account > Settings > API & SSO. Your login is displayed at the top of your profile settings page.\n```\nExample URL: \"https://your-organization-name.crowdin.com/api/v2/projects/123456/files?login=tomhardy&account-key=007abcd6a7c98e64445192f3bb10da2d\"\n```\nTo get an identifier required for each api method - please use the corresponding methods to retrieve that data.\n\nFor example, to get the project id use [List Projects](#operation/api.projects.getMany) api method. Or copy the numerical is from the project’s URL.\n## File upload\nWith Crowdin API v2 files are first uploaded to the Storage and then uploaded to your project or organization. This approach saves time and is helpful for the methods, that take some time to be completed or might need to be resumed, as well as for the files that should be uploaded to several projects.\n\nFor example, to upload a Translation Memory, please run the following sequence of API methods:\n * [_Upload a file_](#operation/api.storages.uploadOne) (Storage)\n * [_Create a file_](#operation/api.projects.files.createOne) (Files)\n\nTo upload files, please add them to Storage first and then use the corresponding API method to upload file from the storage to your organization.\n\nThe same approach is used for several different file types, like source files, screenshots, project cover and logo, Glossaries, and Translation Memories. That’s why such methods would require a Storage id - the id of the file uploaded to the Storage.\n## File download\nFor a more reliable transfer, with Crowdin API v2 file download is completed in several steps. This is also helpful for the methods, that take some time to be completed or might need to be resumed.\n\nFor example, to download a Translation Memory, please run the following sequence of API methods:\n * [_Start TM export_](#operation/api.tms.exportOne)\n * [_Get TM export status_](#operation/api.tms.export.getOne) (to check the progress of the export)\n * [_Get a TM download link_](#operation/api.tms.downloadOne)\n\nThe same approach is used for several different file types, like translations, Translation Memories, Glossaries, and more."
termsOfService: 'https://support.crowdin.com/terms/'
contact:
email: support@crowdin.com
version: ''
x-logo:
url: 'https://support.crowdin.com/assets/logos/crowdin-TranslationManagementService-logo-onecolor.png'
servers:
-
url: '{protocol}://{host}/api/v2'
variables:
protocol:
enum:
- https
- http
default: https
host:
default: api.crowdin.com
paths:
'/projects/{projectId}/branches':
get:
tags:
- Branches
summary: 'List project branches'
operationId: api.projects.branches.getMany
parameters:
-
$ref: '#/components/parameters/ProjectId'
-
name: name
in: query
description: 'Filter branch by name.'
schema:
type: string
-
$ref: '#/components/parameters/PaginationLimit'
-
$ref: '#/components/parameters/PaginationOffset'
responses:
'200':
description: 'List project branches'
content:
application/json:
schema:
$ref: '#/components/schemas/BranchCollectionResource'
'400':
description: 'Request parameters are invalid'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorCollectionResource'
'404':
description: 'Project with the specified id was not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
post:
tags:
- Branches
summary: 'Create a branch'
operationId: api.projects.branches.createOne
parameters:
-
$ref: '#/components/parameters/ProjectId'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/BranchCreateForm'
responses:
'201':
description: 'Branch created successfully'
content:
application/json:
schema:
$ref: '#/components/schemas/BranchResource'
'400':
description: 'Bad request parameters'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorCollectionResource'
'404':
description: 'Project with the specified id was not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'/projects/{projectId}/branches/{branchId}':
get:
tags:
- Branches
summary: 'Get a branch'
operationId: api.projects.branches.getOne
parameters:
-
$ref: '#/components/parameters/ProjectId'
-
$ref: '#/components/parameters/BranchId'
responses:
'200':
description: 'Branch data'
content:
application/json:
schema:
$ref: '#/components/schemas/BranchResource'
'404':
description: 'Branch or project with the specified id is not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
delete:
tags:
- Branches
summary: 'Delete a branch'
operationId: api.projects.branches.deleteOne
parameters:
-
$ref: '#/components/parameters/ProjectId'
-
$ref: '#/components/parameters/BranchId'
responses:
'204':
description: 'Branch was successfully deleted'
'404':
description: 'Branch or project with the specified id was not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
patch:
tags:
- Branches
summary: 'Update a branch'
operationId: api.projects.branches.patchOne
parameters:
-
$ref: '#/components/parameters/ProjectId'
-
$ref: '#/components/parameters/BranchId'
requestBody:
description: 'A JSON Patch document as defined by <a href="https://tools.ietf.org/html/rfc6902#section-3" target="_blank">RFC 6902</a>'
content:
application/json:
schema:
$ref: '#/components/schemas/JsonPatchDocument'
responses:
'200':
description: 'Branch successfully updated'
content:
application/json:
schema:
$ref: '#/components/schemas/BranchResource'
'400':
description: 'Invalid Request Body'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorCollectionResource'
'404':
description: 'Branch or project with the specified id was not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'500':
description: 'Internal Server Error'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'/projects/{projectId}/directories':
get:
tags:
- Directories
summary: 'List project directories'
operationId: api.projects.directories.getMany
parameters:
-
$ref: '#/components/parameters/ProjectId'
-
name: branchId
in: query
description: 'Filter directories by branchId'
schema:
type: integer
-
name: directoryId
in: query
description: 'Filter directories by directoryId'
schema:
type: integer
-
$ref: '#/components/parameters/PaginationLimit'
-
$ref: '#/components/parameters/PaginationOffset'
responses:
'200':
description: 'List project directories'
content:
application/json:
schema:
$ref: '#/components/schemas/DirectoryCollectionResource'
'400':
description: 'Request parameters are invalid'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorCollectionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'404':
description: 'Project with the specified id was not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
post:
tags:
- Directories
summary: 'Create a directory'
operationId: api.projects.directories.createOne
parameters:
-
$ref: '#/components/parameters/ProjectId'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/DirectoryCreateForm'
responses:
'201':
description: 'Directory created successfully'
content:
application/json:
schema:
$ref: '#/components/schemas/DirectoryResource'
'400':
description: 'Bad request parameters'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorCollectionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'404':
description: 'Project with the specified id was not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'/projects/{projectId}/directories/{directoryId}':
get:
tags:
- Directories
summary: 'Get a directory'
operationId: api.projects.directories.getOne
parameters:
-
$ref: '#/components/parameters/ProjectId'
-
$ref: '#/components/parameters/DirectoryId'
responses:
'200':
description: 'Directory data'
content:
application/json:
schema:
$ref: '#/components/schemas/DirectoryResource'
'404':
description: 'Directory or project with the specified id is not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
delete:
tags:
- Directories
summary: 'Delete a directory'
operationId: api.projects.directories.deleteOne
parameters:
-
$ref: '#/components/parameters/ProjectId'
-
$ref: '#/components/parameters/DirectoryId'
responses:
'204':
description: 'Directory was successfully deleted'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'404':
description: 'Directory or project with the specified id was not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'500':
description: 'Internal Server Error'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
patch:
tags:
- Directories
summary: 'Update a directory'
operationId: api.projects.directories.patchOne
parameters:
-
$ref: '#/components/parameters/ProjectId'
-
$ref: '#/components/parameters/DirectoryId'
requestBody:
description: 'A JSON Patch document as defined by <a href="https://tools.ietf.org/html/rfc6902#section-3" target="_blank">RFC 6902</a>'
content:
application/json:
schema:
$ref: '#/components/schemas/JsonPatchDocument'
responses:
'200':
description: 'Directory successfully updated'
content:
application/json:
schema:
$ref: '#/components/schemas/DirectoryResource'
'400':
description: 'Invalid Request Body'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorCollectionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'404':
description: 'Directory or project with the specified id was not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'500':
description: 'Internal Server Error'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'/projects/{projectId}/files':
get:
tags:
- Files
summary: 'List project files'
operationId: api.projects.files.getMany
parameters:
-
$ref: '#/components/parameters/ProjectId'
-
name: branchId
in: query
description: "List branch files.\n\n__Note!__ You can either list files for the specified branch (branchId) in the same request."
schema:
type: integer
-
name: directoryId
in: query
description: "List directory files.\n\n__Note!__ You can either list files for the specified directory (directoryId) in the same request."
schema:
type: integer
-
$ref: '#/components/parameters/PaginationLimit'
-
$ref: '#/components/parameters/PaginationOffset'
responses:
'200':
description: 'List project files'
content:
application/json:
schema:
$ref: '#/components/schemas/FileCollectionResource'
'400':
description: 'Bad request parameters'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorCollectionResource'
'404':
description: 'Project with the specified id is not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
post:
tags:
- Files
summary: 'Create a file'
operationId: api.projects.files.createOne
parameters:
-
$ref: '#/components/parameters/ProjectId'
-
name: branchId
in: query
description: 'Get files of branch. You can set branchId or directoryId, not both'
schema:
type: integer
-
name: directoryId
in: query
description: 'Get files of directory. You can set branchId or directoryId, not both'
schema:
type: integer
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FileCreateForm'
responses:
'200':
description: 'File added successful'
content:
application/json:
schema:
$ref: '#/components/schemas/FileResource'
'400':
description: 'Bad request parameters'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorCollectionResource'
'404':
description: 'Project with the specified id is not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'/projects/{projectId}/files/{fileId}':
get:
tags:
- Files
summary: 'Get a file'
operationId: api.projects.files.getOne
parameters:
-
$ref: '#/components/parameters/ProjectId'
-
$ref: '#/components/parameters/FileId'
responses:
'200':
description: 'File data'
content:
application/json:
schema:
$ref: '#/components/schemas/FileResource'
'404':
description: 'Project or file with the specified id was not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
delete:
tags:
- Files
summary: 'Delete a file'
operationId: api.projects.files.deleteOne
parameters:
-
$ref: '#/components/parameters/ProjectId'
-
$ref: '#/components/parameters/FileId'
responses:
'204':
description: 'File was successfully deleted'
'404':
description: 'Project or file with the specified id was not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'500':
description: 'Internal Server Error'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
patch:
tags:
- Files
summary: 'Update a file'
operationId: api.projects.files.patchOne
parameters:
-
$ref: '#/components/parameters/ProjectId'
-
$ref: '#/components/parameters/FileId'
requestBody:
description: 'A JSON Patch document as defined by <a href="https://tools.ietf.org/html/rfc6902#section-3" target="_blank">RFC 6902</a>'
content:
application/json:
schema:
$ref: '#/components/schemas/JsonPatchDocument'
responses:
'200':
description: 'File successfully updated'
content:
application/json:
schema:
$ref: '#/components/schemas/FileResource'
'400':
description: 'Invalid Request Body'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorCollectionResource'
'404':
description: 'Project or file with the specified id was not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'500':
description: 'Internal Server Error'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'/projects/{projectId}/files/{fileId}/download':
get:
tags:
- Files
summary: 'Export file raw'
operationId: api.projects.files.downloadLink
parameters:
-
$ref: '#/components/parameters/ProjectId'
-
$ref: '#/components/parameters/FileId'
responses:
'200':
description: 'File raw data'
content:
application/json:
schema:
$ref: '#/components/schemas/DownloadLinkResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'404':
description: 'Project or file with the specified id is not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'503':
description: 'Service Unavailable'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
/glossaries:
get:
tags:
- Glossaries
summary: 'List Glossaries'
operationId: api.glossaries.getMany
parameters:
-
name: groupId
in: query
description: 'A unique identifier for the group, this glossary is associated with.'
required: true
schema:
type: integer
-
$ref: '#/components/parameters/PaginationLimit'
-
$ref: '#/components/parameters/PaginationOffset'
responses:
'200':
description: 'List Glossaries of the specified group'
content:
application/json:
schema:
$ref: '#/components/schemas/GlossaryCollectionResource'
'400':
description: 'Request parameters are invalid'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorCollectionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'404':
description: 'Group with the specified id was not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
post:
tags:
- Glossaries
summary: 'Create a Glossary'
operationId: api.glossaries.createOne
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/EnterpriseGlossaryCreateForm'
responses:
'201':
description: 'Glossary created successfully'
content:
application/json:
schema:
$ref: '#/components/schemas/GlossaryResource'
'400':
description: 'Bad request parameters'
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorCollectionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'404':
description: 'Group with the specified id was not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'/glossaries/{glossaryId}':
get:
tags:
- Glossaries
summary: 'Get a Glossary'
operationId: api.glossaries.getOne
parameters:
-
$ref: '#/components/parameters/GlossaryId'
responses:
'200':
description: 'Glossary data'
content:
application/json:
schema:
$ref: '#/components/schemas/GlossaryResource'
'404':
description: 'Glossary with the specified id is not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
delete:
tags:
- Glossaries
summary: 'Delete a Glossary'
operationId: api.glossaries.deleteOne
parameters:
-
$ref: '#/components/parameters/GlossaryId'
responses:
'204':
description: 'Glossary was successfully deleted'
'404':
description: 'Glossary with the specified id was not found'
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/ExceptionResource'
patch:
tags:
- Glossaries
summary: 'Update a Glossary'
operationId: api.glossaries.patchOne
parameters:
-
$ref: '#/components/parameters/GlossaryId'
requestBody:
description: 'A JSON Patch document as defined by <a href="https://tools.ietf.org/html/rfc6902#section-3" target="_blank">RFC 6902</a>'
content:
application/json:
schema:
$ref: '#/components/schemas/JsonPatchDocument'
responses: