-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs.json
More file actions
3803 lines (3803 loc) · 160 KB
/
docs.json
File metadata and controls
3803 lines (3803 loc) · 160 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.1.0",
"info": {
"title": "SimpleLocalize API",
"description": "Swagger documentation for SimpleLocalize API",
"contact": { "name": "API Support", "email": "contact@simplelocalize.io" },
"version": "f15d9b9_2026-02-03_19-03-15"
},
"externalDocs": { "description": "REST API Documentation", "url": "https://simplelocalize.io/docs/api/get-started/" },
"servers": [{ "url": "https://api.simplelocalize.io", "description": "Base URL" }],
"tags": [
{ "name": "Translation keys", "description": "Project translation key management endpoints" },
{
"name": "Hosting",
"description": "Translation Hosting management endpoints",
"externalDocs": {
"description": "Endpoint Docs",
"url": "https://simplelocalize.io/docs/api/publish-translations/"
}
},
{ "name": "Activity", "description": "Project activity" },
{
"name": "Projects",
"description": "Projects management endpoints",
"externalDocs": {
"description": "Endpoint Docs",
"url": "https://simplelocalize.io/docs/api/translation-project-management/"
}
},
{ "name": "Tags", "description": "Project tags management endpoints" },
{
"name": "Customers",
"description": "Customer endpoints for alternative translations",
"externalDocs": {
"description": "Endpoint Docs",
"url": "https://simplelocalize.io/docs/api/customer-specific-api/"
}
},
{ "name": "Translations", "description": "Project translation management endpoints" },
{
"name": "Auto-translation",
"description": "Auto-translation endpoints",
"externalDocs": { "description": "Endpoint Docs", "url": "https://simplelocalize.io/docs/api/auto-translate/" }
},
{
"name": "Languages",
"description": "Project language management endpoints",
"externalDocs": { "description": "Endpoint Docs", "url": "https://simplelocalize.io/docs/api/language-api/" }
},
{ "name": "File import & export", "description": "Endpoints for importing and exporting files" }
],
"paths": {
"/api/v2/projects": {
"get": {
"tags": ["Projects"],
"summary": "List projects",
"description": "List all projects. Requires Personal Token and returns only projects for the authenticated user.\n",
"operationId": "getProjectsV2",
"parameters": [
{
"name": "Authorization",
"in": "header",
"description": "Personal Token",
"required": true,
"schema": { "type": "string" }
},
{
"name": "sort",
"in": "query",
"description": "Select sorting method, default is alphabetical, case insensitive",
"required": false,
"schema": {
"type": "string",
"default": "alphabetical",
"description": "Select sorting method, default is alphabetical, case insensitive",
"enum": [
"alphabetical",
"translation_progress",
"number_of_keys",
"number_of_languages",
"number_of_members",
"last_edited",
"last_activity",
"created"
],
"example": "alphabetical"
},
"example": "alphabetical"
}
],
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"properties": {
"msg": { "type": "string", "default": "OK" },
"status": { "type": "integer", "format": "int32", "default": 200 },
"data": { "type": "array", "items": { "$ref": "#/components/schemas/ApiProjectDetailsItemV2" } }
}
}
}
}
}
},
"security": [{ "Personal Access Token": [] }]
},
"post": {
"tags": ["Projects"],
"summary": "Create project",
"description": "Create a new project",
"operationId": "createProjectV2",
"parameters": [
{
"name": "Authorization",
"in": "header",
"description": "Personal Token",
"required": true,
"schema": { "type": "string" }
}
],
"requestBody": {
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ProjectCreateRequest" } } },
"required": true
},
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"properties": {
"msg": { "type": "string", "default": "OK" },
"status": { "type": "integer", "format": "int32", "default": 200 },
"data": { "$ref": "#/components/schemas/ProjectReadDetails" }
}
}
}
}
}
},
"security": [{ "Personal Access Token": [] }]
}
},
"/api/v2/jobs/auto-translate": {
"post": {
"tags": ["Auto-translation"],
"summary": "Create auto-translation jobs",
"description": "Create auto-translation jobs for a project and multiple languages.\nThe endpoint doesn't allow to customize auto-translation options (e.g. source language, target language, etc.).\nThose values are taken from the latest used auto-translation configuration.\nThanks to that you can simply choose which languages you want to translate.\n",
"operationId": "autoTranslate",
"parameters": [
{ "name": "X-SimpleLocalize-Token", "in": "header", "required": true, "schema": { "type": "string" } }
],
"requestBody": {
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiAutoTranslateRequestV2" } } },
"required": true
},
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"properties": {
"msg": { "type": "string", "default": "OK" },
"status": { "type": "integer", "format": "int32", "default": 200 },
"data": { "type": "array", "items": { "$ref": "#/components/schemas/JobItem" } }
}
}
}
}
}
},
"security": [{ "Project API Key": [] }]
}
},
"/api/v2/import": {
"post": {
"tags": ["File import & export"],
"summary": "Import translations from file",
"description": "Import translations to file",
"externalDocs": {
"description": "Learn more",
"url": "https://simplelocalize.io/docs/api/import-translations/"
},
"operationId": "importTranslations",
"parameters": [
{ "name": "X-SimpleLocalize-Token", "in": "header", "required": true, "schema": { "type": "string" } },
{
"name": "uploadFormat",
"in": "query",
"required": true,
"schema": {
"type": "string",
"enum": [
"android",
"android-strings",
"android-xml",
"csv-translations",
"tsv",
"excel",
"java-properties",
"localizable-xcstrings",
"localizable-strings",
"localizable-strings-dict",
"po-pot",
"php-array",
"string-resources",
"simplelocalize-json",
"single-language-json",
"multi-language-json",
"javascript",
"module-exports",
"yaml",
"qt-linguist",
"resx"
]
}
},
{
"name": "importOptions",
"in": "query",
"required": false,
"schema": {
"type": "array",
"items": {
"type": "string",
"enum": [
"PUBLISH_AFTER_IMPORT",
"REPLACE_TRANSLATION_IF_FOUND",
"TRIM_LEADING_TRAILING_SPACES",
"UNESCAPE_NEW_LINES",
"UNESCAPE_SINGLE_QUOTES",
"SHEETS_AS_NAMESPACES",
"MULTI_LANGUAGE",
"LANGUAGES_NESTED"
]
}
}
},
{ "name": "languageKey", "in": "query", "required": false, "schema": { "type": "string" } },
{ "name": "customerId", "in": "query", "required": false, "schema": { "type": "string" } },
{ "name": "namespace", "in": "query", "required": false, "schema": { "type": "string" } },
{
"name": "tags",
"in": "query",
"required": false,
"schema": { "type": "array", "items": { "type": "string" } }
}
],
"requestBody": {
"content": { "multipart/form-data": { "schema": { "type": "file", "format": "binary" } } },
"required": true
},
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"properties": {
"msg": { "type": "string", "default": "OK" },
"status": { "type": "integer", "format": "int32", "default": 200 },
"data": { "$ref": "#/components/schemas/ImportFileResponse" }
}
}
}
}
}
},
"security": [{ "Project API Key": [] }]
}
},
"/api/v2/environments": {
"get": {
"tags": ["Hosting"],
"summary": "Get all environments",
"description": "The endpoint is used for getting all environments in the project.\nIt returns a list of environments with their details, including the latest and production environments.\n",
"operationId": "getEnvironments",
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"properties": {
"msg": { "type": "string", "default": "OK" },
"status": { "type": "integer", "format": "int32", "default": 200 },
"data": { "type": "array", "items": { "$ref": "#/components/schemas/CdnEnvironmentApiDetails" } }
}
}
}
}
}
},
"security": [{ "Project API Key": [] }]
},
"post": {
"tags": ["Hosting"],
"summary": "Create a new environment",
"description": "The endpoint is used for creating a new environment in the project.\n- You can create a custom environment with a unique key, name, and color.\n- The created environment can be used for publishing translations.\n- The environment key must be unique within the project and cannot be one of the reserved keys: `_latest`, `_production`.\n",
"operationId": "createEnvironment",
"requestBody": {
"content": {
"application/json": { "schema": { "$ref": "#/components/schemas/CdnEnvironmentCreateApiRequest" } }
},
"required": true
},
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": { "description": "OK" }
},
"security": [{ "Project API Key": [] }]
}
},
"/api/v2/environments/{environmentKey}/publish": {
"post": {
"tags": ["Hosting"],
"summary": "Publish translations to given environment",
"description": "The endpoint is used for publishing translations for given environment.\n- By default, every project has two Translation Hosting environments (`_latest` and `_production`) and Translation Editor environment.\n- Publication always (if not specified differently in the project settings) happens from the Translation Editor environment to the `_latest` environment, and then to the `_production` environment.\n- There is no way to change this flow other than creating a custom environment in the project settings.\n- In order to publish translations to the Production environment, you need use `_production` as 'environmentKey' parameter.\n- In order to publish translations to the Latest environment, you need use `_latest` as `environmentKey` parameter.\n- In order to publish translations to the custom environment, you need use your custom environment key as `environmentKey` parameter.\n- Labels can be specified only for the Latest environment.\n",
"operationId": "publishTranslations",
"parameters": [{ "name": "environmentKey", "in": "path", "required": true, "schema": { "type": "string" } }],
"requestBody": {
"content": {
"application/json": { "schema": { "$ref": "#/components/schemas/CdnEnvironmentApiRequestPublication" } }
}
},
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": { "description": "OK" }
},
"security": [{ "Project API Key": [] }]
}
},
"/api/v1/translation-keys": {
"get": {
"tags": ["Translation keys"],
"summary": "Get translation keys with metadata",
"description": "Get translation keys for a project.\n\nAll parameters are optional.\n\nParameters are used for filtering translations by given values, and they are case sensitive and exact match.\n\nDefault page size is 100 and maximum page size is 2500. Page size can be changed by `size` parameter.\n\nDefault page is 0. Page can be changed by `page` parameter.\n",
"operationId": "getTranslationKeys",
"parameters": [
{ "name": "key", "in": "query", "required": false, "schema": { "type": "string" } },
{ "name": "namespace", "in": "query", "required": false, "schema": { "type": "string" } },
{
"name": "sort",
"in": "query",
"required": false,
"schema": { "type": "string", "enum": ["last_seen_at", "modified_at", "created_at", "deprecated_at"] }
},
{
"name": "page",
"in": "query",
"required": false,
"schema": { "type": "integer", "format": "int32", "default": 0, "minimum": 0 }
},
{
"name": "size",
"in": "query",
"required": false,
"schema": { "type": "integer", "format": "int32", "default": 100, "maximum": 2500, "minimum": 0 }
}
],
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": {
"description": "OK",
"content": {
"application/json": { "schema": { "$ref": "#/components/schemas/PagedTranslationKeysV2RestResponse" } }
}
}
},
"security": [{ "Project API Key": [] }]
},
"post": {
"tags": ["Translation keys"],
"summary": "Create translation key",
"description": "Creates translation key for a project. It throws an error if translation key already exists.\n\n`key` is a required field, and it cannot be null or empty. The endpoint throws an error if `key` is null or empty.\n\n`namespace`, `description` and `codeDescription` are optional fields, and they can be null or empty. Null and empty values are ignored.\n\nMax size of `description` and `codeDescription` is 500 characters, otherwise, the endpoint throws an error.\n\nIf `namespace` is not provided, the default namespace is used.\n\nIf `description` is not provided, the empty string is used. Description is used for translation key comments that are visible in the editor, and they be edited in the editor.\n\nIf `codeDescription` is not provided, the empty string is used. Code description is used for code comments that are visible in the editor, but they cannot be edited in the editor.\n\nIf `charactersLimit` is not provided (or -1), then no limit is set.\n",
"operationId": "createTranslationKey",
"requestBody": {
"content": {
"application/json": { "schema": { "$ref": "#/components/schemas/CreateTranslationKeyRequestV2" } }
},
"required": true
},
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": { "description": "OK" }
},
"security": [{ "Project API Key": [] }]
},
"delete": {
"tags": ["Translation keys"],
"summary": "Delete translation key",
"description": "Deletes translation key for a project",
"operationId": "deleteTranslationKey",
"parameters": [
{
"name": "key",
"in": "query",
"required": true,
"schema": { "type": "string", "maxLength": 500, "minLength": 0 }
},
{
"name": "namespace",
"in": "query",
"required": false,
"schema": { "type": "string", "default": "", "maxLength": 128, "minLength": 0 }
}
],
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": { "description": "OK" }
},
"security": [{ "Project API Key": [] }]
},
"patch": {
"tags": ["Translation keys"],
"summary": "Update translation key",
"description": "Updates key, namespace, description and/or code description for a project. It throws an error if translation key does not exist or if the new key/namespace combination already exists.\n\n`key`, `namespace`, `description` and `codeDescription` are optional fields, and they can be null or empty. Null and empty values are ignored, and they are not updated.\n\nThe last seen date is updated automatically even if there is no changes.\n\nMax size of description and code description is 500 characters, otherwise, the endpoint throws an error.\n\nTo clear the characters limit, set it to -1.\n",
"operationId": "updateTranslationKey",
"parameters": [
{ "name": "x-simplelocalize-client", "in": "header", "required": false, "schema": { "type": "string" } },
{ "name": "key", "in": "query", "required": true, "schema": { "type": "string" } },
{ "name": "namespace", "in": "query", "required": false, "schema": { "type": "string", "default": "" } }
],
"requestBody": {
"content": {
"application/json": { "schema": { "$ref": "#/components/schemas/UpdateTranslationKeyRequestV2" } }
},
"required": true
},
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": { "description": "OK" }
},
"security": [{ "Project API Key": [] }]
}
},
"/api/v1/translation-keys/screenshots": {
"post": {
"tags": ["Translation keys"],
"summary": "Upload translation key screenshot",
"description": "Uploads translation key screenshot from image encoded in base64. It throws an error if translation key does not exist.\n\nThe uploaded screenshot replaces the existing screenshot if it exists.\n\n`key` is a required field, and it cannot be null or empty. The endpoint throws an error if `key` is null or empty.\n\n`namespace` is an optional field, and it can be null or empty. Null and empty values are ignored.\n\nIf `namespace` is not provided, then an empty namespace is used.\n\nMax size of screenshot is 2MB for base64, otherwise, the endpoint throws an error.\n\nOnly PNG, JPG and JPEG formats are supported, otherwise, the endpoint may throw an error.\n",
"operationId": "uploadTranslationKeyScreenshot",
"parameters": [
{ "name": "key", "in": "query", "required": true, "schema": { "type": "string" } },
{ "name": "namespace", "in": "query", "required": false, "schema": { "type": "string", "default": "" } }
],
"requestBody": {
"content": {
"application/json": { "schema": { "$ref": "#/components/schemas/UploadTranslationKeyScreenshotRequestV2" } }
},
"required": true
},
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": { "description": "OK" }
},
"security": [{ "Project API Key": [] }]
}
},
"/api/v1/translation-keys/screenshots/file-upload": {
"post": {
"tags": ["Translation keys"],
"summary": "Upload translation key screenshot from file",
"description": "Uploads translation key screenshot from a file. It throws an error if translation key does not exist.\n\nThe uploaded screenshot replaces the existing screenshot if it exists.\n\n`key` is a required field, and it cannot be null or empty. The endpoint throws an error if `key` is null or empty.\n\n`namespace` is an optional field, and it can be null or empty. Null and empty values are ignored.\n\nIf `namespace` is not provided, then an empty namespace is used.\n\nMax size of screenshot is 4MB for file upload, otherwise, the endpoint throws an error.\n\nOnly PNG, JPG and JPEG formats are supported, otherwise, the endpoint may throw an error.\n",
"operationId": "uploadTranslationKeyScreenshotFileUpload",
"parameters": [
{ "name": "key", "in": "query", "required": true, "schema": { "type": "string" } },
{ "name": "namespace", "in": "query", "required": false, "schema": { "type": "string", "default": "" } }
],
"requestBody": {
"content": {
"multipart/form-data": {
"schema": {
"type": "object",
"properties": { "file": { "type": "string", "format": "binary" } },
"required": ["file"]
}
}
}
},
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": { "description": "OK" }
},
"security": [{ "Project API Key": [] }]
}
},
"/api/v1/translation-keys/screenshots/bulk": {
"post": {
"tags": ["Translation keys"],
"summary": "Upload translation key screenshot from file",
"operationId": "uploadTranslationKeyScreenshotFileUploadBulk",
"requestBody": {
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/UploadMultipleScreenshot" } } },
"required": true
},
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": { "description": "OK" }
},
"security": [{ "Project API Key": [] }]
}
},
"/api/v1/translation-keys/bulk": {
"post": {
"tags": ["Translation keys"],
"summary": "Create translation keys in bulk",
"description": "Creates translation keys for a project. In the same manner as the single key creation endpoint.\n\nIt doesn't throw an error if translation key already exists, but it returns a list of failures.\n\nYou can create up to 100 translation keys at once.\n",
"operationId": "createTranslationKeyBulk",
"requestBody": {
"content": {
"application/json": { "schema": { "$ref": "#/components/schemas/CreateTranslationKeyBulkRequestV2" } }
},
"required": true
},
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"properties": {
"msg": { "type": "string", "default": "OK" },
"status": { "type": "integer", "format": "int32", "default": 200 },
"data": { "$ref": "#/components/schemas/CreateTranslationKeyBulkResponseV2" }
}
}
}
}
}
},
"security": [{ "Project API Key": [] }]
},
"delete": {
"tags": ["Translation keys"],
"summary": "Delete translation keys in bulk",
"description": "Deletes translation keys for a project. In the same manner as the single key delete endpoint.\n\nIt doesn't throw an error if translation key doesn't exist, but it returns a list of failures.\n\nYou can delete up to 100 translation keys at once.\n",
"operationId": "deleteTranslationKeyBulk",
"requestBody": {
"content": {
"application/json": { "schema": { "$ref": "#/components/schemas/DeleteTranslationKeyBulkRequestV2" } }
},
"required": true
},
"responses": {
"500": {
"description": "Internal Server Error",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"400": {
"description": "Bad Request",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"403": {
"description": "Forbidden",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"429": {
"description": "Too Many Requests",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"409": {
"description": "Conflict",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"402": {
"description": "Payment Required",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"404": {
"description": "Not Found",
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/ApiError" } } }
},
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"properties": {
"msg": { "type": "string", "default": "OK" },
"status": { "type": "integer", "format": "int32", "default": 200 },
"data": { "$ref": "#/components/schemas/DeleteTranslationKeyBulkResponseV2" }
}
}
}
}