-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMultiAPIsBasicJson-AIAGW_SDK (2).json
More file actions
3458 lines (3458 loc) · 147 KB
/
Copy pathMultiAPIsBasicJson-AIAGW_SDK (2).json
File metadata and controls
3458 lines (3458 loc) · 147 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": "AIAGW_SDK",
"description": "AIAGW_SDK",
"termsOfService": "https://zoom.us/docs/en-us/zoom_api_license_and_tou.html",
"contact": {
"name": "Zoom Developers",
"url": "https://developer.zoom.us/"
},
"version": "2.0.0"
},
"servers": [
{
"url": "https://api.zoom.us/v2"
}
],
"paths": {
"/aiservices/interpreter/jobs": {
"get": {
"tags": [
"Interpreter"
],
"summary": "List Batch Interpreter Jobs",
"description": "Retrieves a paginated list of batch interpretation jobs for the authenticated tenant.\n\n**[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `LIGHT`",
"operationId": "listBatchInterpretJobs",
"parameters": [
{
"name": "state",
"in": "query",
"description": "This field filters jobs by processing state. Omit to return jobs in all states.",
"required": false,
"schema": {
"type": "string",
"example": "QUEUED",
"enum": [
"QUEUED",
"PROCESSING",
"SUCCEEDED",
"PARTIAL",
"FAILED",
"CANCELED"
]
}
},
{
"name": "page_size",
"in": "query",
"description": "The maximum number of jobs to return per page.",
"required": false,
"schema": {
"maximum": 100,
"minimum": 1,
"type": "integer",
"format": "int32",
"example": 50,
"default": 50
}
},
{
"name": "next_page_token",
"in": "query",
"description": "The pagination token from the previous response's `next_page_token` field.",
"required": false,
"schema": {
"type": "string",
"example": "eyJqb2JfaWQiOiJqb2JfYWJjMTIzIn0"
}
}
],
"responses": {
"200": {
"description": "Jobs listed successfully",
"content": {
"application/json": {
"schema": {
"required": [
"jobs"
],
"type": "object",
"properties": {
"jobs": {
"maxItems": 100,
"type": "array",
"description": "The list of batch interpretation jobs.",
"items": {
"required": [
"job_id",
"state",
"submitted_at"
],
"type": "object",
"properties": {
"job_id": {
"type": "string",
"description": "The job identifier.",
"example": "job_abc123"
},
"state": {
"type": "string",
"description": "The overall job processing state.",
"example": "PROCESSING",
"enum": [
"QUEUED",
"PROCESSING",
"SUCCEEDED",
"PARTIAL",
"FAILED",
"CANCELED"
]
},
"submitted_at": {
"type": "string",
"description": "The job submission timestamp.",
"format": "date-time",
"example": "2026-01-05T18:34:12Z"
},
"input": {
"type": "object",
"properties": {
"mode": {
"type": "string",
"description": "The input mode specifying how files are provided.",
"example": "PREFIX",
"enum": [
"SINGLE",
"PREFIX",
"MANIFEST"
]
},
"source": {
"type": "string",
"description": "The storage provider where input files are located.",
"example": "S3",
"enum": [
"S3"
]
},
"uri": {
"type": "string",
"description": "The URI path to input files or manifest.",
"example": "s3://acme-bucket/text/"
}
},
"description": "The input configuration."
},
"output": {
"type": "object",
"properties": {
"destination": {
"type": "string",
"description": "The storage provider for output results.",
"example": "S3",
"enum": [
"S3"
]
},
"uri": {
"type": "string",
"description": "The URI path where interpretation results will be written.",
"example": "s3://acme-bucket/interpreted/"
},
"layout": {
"type": "string",
"description": "The output file organization pattern.",
"example": "PREFIX",
"enum": [
"ADJACENT",
"PREFIX"
]
}
},
"description": "The output configuration."
},
"config": {
"type": "object",
"properties": {
"source_language": {
"type": "string",
"description": "The source language ISO locale.",
"example": "en-US"
},
"target_languages": {
"type": "array",
"description": "The target language ISO locales.",
"example": [
"es-ES",
"fr-FR"
],
"items": {
"type": "string"
}
},
"domain": {
"type": "string",
"description": "The domain hint used for interpretation.",
"example": "general"
},
"formality": {
"type": "string",
"description": "The formality level used for translation output.",
"example": "formal"
},
"glossary_id": {
"type": "string",
"description": "The custom glossary ID used.",
"example": "glossary_abc123"
}
},
"description": "The interpretation configuration."
},
"summary": {
"type": "object",
"properties": {
"total_files": {
"type": "integer",
"description": "The total number of files in the job.",
"example": 2487
},
"queued": {
"type": "integer",
"description": "The number of files waiting in the queue.",
"example": 0
},
"processing": {
"type": "integer",
"description": "The number of files currently being processed.",
"example": 23
},
"succeeded": {
"type": "integer",
"description": "The number of successfully processed files.",
"example": 2450
},
"failed": {
"type": "integer",
"description": "The number of files that failed processing.",
"example": 14
},
"skipped": {
"type": "integer",
"description": "The number of files skipped due to filters or errors.",
"example": 0
},
"canceled": {
"type": "integer",
"description": "The number of files canceled by user request.",
"example": 0
}
},
"description": "The job progress summary."
},
"error": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "The error code indicating the failure reason.",
"example": "INVALID_CREDENTIALS"
},
"message": {
"type": "string",
"description": "The human-readable error message.",
"example": "AWS credentials expired"
},
"details": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Additional error context and details."
}
},
"description": "Job-level error (only when state=FAILED).",
"nullable": true
}
}
}
},
"next_page_token": {
"type": "string",
"description": "The pagination token for fetching next page of results. Empty if no more results.",
"example": "eyJqb2JfaWQiOiJqb2JfZGVmNDU2In0"
}
}
}
}
}
},
"400": {
"description": "**HTTP Status Code:** `400` <br>\n Bad Request \n\n "
},
"401": {
"description": "**HTTP Status Code:** `401` <br>\n Unauthorized \n\n "
},
"403": {
"description": "**HTTP Status Code:** `403` <br>\n Forbidden \n\n "
},
"404": {
"description": "**HTTP Status Code:** `404` <br>\n Not Found \n\n "
},
"429": {
"description": "**HTTP Status Code:** `429` <br>\n Too Many Requests. Too Many Requests. For more information, see [rate limits](https://developers.zoom.us/docs/api/rate-limits/). \n\n "
},
"500": {
"description": "**HTTP Status Code:** `500` <br>\n Internal Server Error \n\n "
}
},
"security": [
{
"openapi_oauth": [],
"openapi_authorization": []
}
],
"x-extensions": {
"x-permissions": []
}
},
"post": {
"tags": [
"Interpreter"
],
"summary": "Submit Batch Interpreter Job",
"description": "Submits a batch text interpretation job for asynchronous processing.\n\nSupports three input modes: single file (mode inferred when uri points to single file), prefix/container enumeration (with optional filters), or explicit manifest (list of URIs).\n\nMaximum of 1000 files per manifest.\n\n**[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `LIGHT`",
"operationId": "submitBatchInterpret",
"requestBody": {
"content": {
"application/json": {
"schema": {
"required": [
"config",
"input",
"output"
],
"type": "object",
"properties": {
"input": {
"required": [
"source"
],
"type": "object",
"properties": {
"mode": {
"type": "string",
"description": "The input processing mode. Optional - can be inferred: 'MANIFEST' if manifest array provided, 'SINGLE' if URI points to single file, 'PREFIX' if URI is directory/prefix.",
"example": "PREFIX",
"enum": [
"SINGLE",
"PREFIX",
"MANIFEST"
]
},
"source": {
"type": "string",
"description": "The storage provider.",
"example": "S3",
"enum": [
"S3"
]
},
"uri": {
"type": "string",
"description": "The S3 URI for a single file or prefix/container. Required for single and prefix modes.",
"format": "uri",
"example": "s3://acme-bucket/text/2025/11/"
},
"manifest": {
"maxItems": 1000,
"minItems": 1,
"type": "array",
"description": "The explicit list of file URIs for manifest mode. Each URI can include SAS tokens or signed URLs. Required when mode is 'MANIFEST'. Maximum 1000 files per batch job.",
"example": [
"https://acct.blob.core.windows.net/text/a1.txt?sv=...sig=...",
"https://acct.blob.core.windows.net/text/a2.txt?sv=...sig=..."
],
"items": {
"type": "string",
"format": "uri"
}
},
"filters": {
"type": "object",
"properties": {
"include_globs": {
"maxItems": 10,
"type": "array",
"description": "This field includes only files that match the glob patterns. Supports wildcards: * (any chars), ** (recursive), ? (single char). Applied first.",
"example": [
"**/*.txt",
"**/*.json"
],
"items": {
"type": "string"
}
},
"exclude_globs": {
"maxItems": 10,
"type": "array",
"description": "The exclude files that match the glob patterns. Applied after include_globs.",
"example": [
"**/tmp/**",
"*_draft.*"
],
"items": {
"type": "string"
}
}
},
"description": "File filtering options for prefix mode. Use glob patterns to include/exclude files from processing."
},
"auth": {
"type": "object",
"properties": {
"aws": {
"required": [
"access_key_id",
"secret_access_key",
"session_token"
],
"type": "object",
"properties": {
"access_key_id": {
"type": "string",
"description": "The AWS access key ID.",
"example": ""
},
"secret_access_key": {
"type": "string",
"description": "The AWS secret access key.",
"example": ""
},
"session_token": {
"type": "string",
"description": "The AWS session token for temporary credentials (recommended for security).",
"example": ""
}
},
"description": "The AWS credentials for S3 access. Required when source is 's3' and URIs are not pre-signed. Use session tokens for enhanced security."
}
},
"description": "The authentication credentials for the input source."
}
},
"description": "The input source configuration. Either 'uri' (for single/prefix modes) or 'manifest' (for manifest mode) must be provided."
},
"output": {
"required": [
"destination",
"uri"
],
"type": "object",
"properties": {
"destination": {
"type": "string",
"description": "The output storage provider.",
"example": "S3",
"enum": [
"S3"
]
},
"uri": {
"type": "string",
"description": "The output base URI for interpretation results.",
"format": "uri",
"example": "s3://acme-bucket/interpreted/2025/11/"
},
"layout": {
"type": "string",
"description": "The output file layout strategy. 'ADJACENT': place output next to input file (same directory). 'PREFIX': use output uri as base directory.",
"example": "ADJACENT",
"enum": [
"ADJACENT",
"PREFIX"
]
},
"auth": {
"type": "object",
"properties": {
"aws": {
"type": "object",
"properties": {
"access_key_id": {
"type": "string",
"description": "The AWS access key ID."
},
"secret_access_key": {
"type": "string",
"description": "The AWS secret access key."
},
"session_token": {
"type": "string",
"description": "The AWS session token for temporary credentials (recommended for security)."
}
},
"description": "The AWS credentials for S3 access. Required for AWS S3 output."
}
},
"description": "The authentication credentials for the output destination."
}
},
"description": "The output destination configuration."
},
"config": {
"type": "object",
"properties": {
"source_language": {
"type": "string",
"description": "Source language ISO locale (e.g., \"en-US\"). Leave empty for auto-detect.",
"example": "en-US"
},
"target_languages": {
"type": "array",
"description": "Target language ISO locales to translate into.",
"example": [
"es-ES",
"fr-FR",
"de-DE"
],
"items": {
"type": "string"
}
}
},
"description": "The interpretation configuration."
},
"reference_id": {
"maxLength": 256,
"type": "string",
"description": "The customer-provided reference ID for tracking and correlation.",
"example": "import-2025-11"
},
"notifications": {
"required": [
"webhook_url"
],
"type": "object",
"properties": {
"webhook_url": {
"type": "string",
"description": "The HTTPS webhook URL for job status notifications. Will receive POST requests on job state changes.",
"format": "uri",
"example": "https://example.com/hooks/interpreter"
},
"secret": {
"maxLength": 256,
"type": "string",
"description": "The HMAC secret for webhook signature verification. Used to sign notification payloads.",
"example": "hmac-secret"
},
"security_type": {
"type": "string",
"description": "The webhook security type.",
"example": "WEBHOOK_SECURITY_HMAC",
"enum": [
"WEBHOOK_SECURITY_HMAC",
"WEBHOOK_SECURITY_JWT"
]
},
"audience": {
"type": "string",
"description": "Required when security_type is WEBHOOK_SECURITY_JWT. Used as the \"aud\" claim in the signed token.",
"example": "https://example.com"
}
},
"description": "The webhook notification settings for job status updates."
}
}
}
}
}
},
"responses": {
"201": {
"description": "Job submitted successfully and queued for processing.",
"content": {
"application/json": {
"schema": {
"required": [
"job_id",
"state",
"submitted_at"
],
"type": "object",
"properties": {
"job_id": {
"type": "string",
"description": "The unique job identifier for tracking and status queries.",
"example": "job_abc123"
},
"state": {
"type": "string",
"description": "The initial job state (typically 'QUEUED').",
"example": "QUEUED",
"enum": [
"QUEUED",
"PROCESSING",
"SUCCEEDED",
"PARTIAL",
"FAILED",
"CANCELED"
]
},
"submitted_at": {
"type": "string",
"description": "The job submission timestamp in ISO 8601 format.",
"format": "date-time",
"example": "2026-01-05T18:34:12Z"
}
}
}
}
}
},
"400": {
"description": "**HTTP Status Code:** `400` <br>\n Bad Request Bad Request \n\n "
},
"401": {
"description": "**HTTP Status Code:** `401` <br>\n Unauthorized Unauthorized \n\n "
},
"403": {
"description": "**HTTP Status Code:** `403` <br>\n Forbidden Forbidden \n\n "
},
"404": {
"description": "**HTTP Status Code:** `404` <br>\n Not Found Not Found \n\n "
},
"415": {
"description": "**HTTP Status Code:** `415` <br>\n Unsupported Media Type Unsupported Media Type \n\n "
},
"422": {
"description": "**HTTP Status Code:** `422` <br>\n Unprocessable Entity Unprocessable Entity \n\n "
},
"429": {
"description": "**HTTP Status Code:** `429` <br>\n Too Many Requests. For more information, see [rate limits](https://developers.zoom.us/docs/api/rate-limits/). \n\n "
},
"500": {
"description": "**HTTP Status Code:** `500` <br>\n Internal Server Error Internal Server Error \n\n "
}
},
"security": [
{
"openapi_oauth": [],
"openapi_authorization": []
}
],
"x-extensions": {
"x-permissions": []
}
}
},
"/aiservices/interpreter/jobs/{jobId}": {
"get": {
"tags": [
"Interpreter"
],
"summary": "Get Batch Interpreter Job Status",
"description": "Retrieves job-level summary and configuration details for a batch interpretation job.\n\nReturns overall job state, progress statistics, and the interpretation configuration used.\n\n**[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `LIGHT`",
"operationId": "getBatchInterpretJobStatus",
"parameters": [
{
"name": "jobId",
"in": "path",
"description": "The unique identifier for the batch interpretation job.",
"required": true,
"schema": {
"type": "string",
"example": "job_abc123"
}
}
],
"responses": {
"200": {
"description": "Job status retrieved successfully",
"content": {
"application/json": {
"schema": {
"required": [
"job_id",
"state",
"submitted_at",
"summary"
],
"type": "object",
"properties": {
"job_id": {
"type": "string",
"description": "The job identifier.",
"example": "job_abc123"
},
"state": {
"type": "string",
"description": "The overall job processing state. PARTIAL indicates some files succeeded while others failed.",
"example": "PARTIAL",
"enum": [
"QUEUED",
"PROCESSING",
"SUCCEEDED",
"PARTIAL",
"FAILED",
"CANCELED"
]
},
"submitted_at": {
"type": "string",
"description": "The job submission timestamp in ISO 8601 format.",
"format": "date-time",
"example": "2026-01-05T18:34:12Z"
},
"input": {
"type": "object",
"properties": {
"mode": {
"type": "string",
"description": "The input mode specifying how files are provided.",
"example": "PREFIX",
"enum": [
"SINGLE",
"PREFIX",
"MANIFEST"
]
},
"source": {
"type": "string",
"description": "The storage provider where input files are located.",
"example": "S3",
"enum": [
"S3"
]
},
"uri": {
"type": "string",
"description": "The URI path to input files or manifest.",
"example": "s3://acme-bucket/text/2025/11/"
}
},
"description": "The input configuration."
},
"output": {
"type": "object",
"properties": {
"destination": {
"type": "string",
"description": "The storage provider for output results.",
"example": "S3",
"enum": [
"S3"
]
},
"uri": {
"type": "string",
"description": "The URI path where interpretation results are written.",
"example": "s3://acme-bucket/interpreted/2025/11/"
},
"layout": {
"type": "string",
"description": "The output file organization pattern.",
"example": "PREFIX",
"enum": [
"ADJACENT",
"PREFIX"
]
}
},
"description": "The output configuration."
},
"config": {
"type": "object",
"properties": {
"source_language": {
"type": "string",
"description": "The source language ISO locale.",
"example": "en-US"
},
"target_languages": {
"type": "array",
"description": "The target language ISO locales.",
"example": [
"es-ES",
"fr-FR",
"de-DE"
],
"items": {
"type": "string"
}
},
"domain": {
"type": "string",
"description": "The domain hint used for interpretation.",
"example": "general"
},
"formality": {
"type": "string",
"description": "The formality level used for translation output.",
"example": "formal"
},
"glossary_id": {
"type": "string",
"description": "The custom glossary ID used.",
"example": "glossary_abc123"
}
},
"description": "The interpretation configuration."
},
"summary": {
"required": [
"failed",
"processing",
"queued",
"skipped",
"succeeded",
"total_files"
],
"type": "object",
"properties": {
"total_files": {
"type": "integer",
"description": "The total number of files in job.",
"example": 2487
},
"queued": {
"type": "integer",
"description": "The files waiting in the queue.",
"example": 0
},
"processing": {
"type": "integer",
"description": "The files currently being processed.",
"example": 23
},
"succeeded": {
"type": "integer",
"description": "The successfully processed files.",
"example": 2450
},
"failed": {
"type": "integer",
"description": "The files that failed processing.",
"example": 14
},
"skipped": {
"type": "integer",
"description": "The files that are skipped due to filters or errors.",
"example": 0
},
"canceled": {
"type": "integer",
"description": "The files canceled by user request.",
"example": 0
}
},
"description": "The aggregated job progress statistics."
},
"error": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "The error code indicating the failure reason.",
"example": "INVALID_CREDENTIALS"
},
"message": {
"type": "string",
"description": "The human-readable error message.",
"example": "AWS credentials expired"
},
"details": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Additional error context and details."
}
},
"description": "Job-level error (only when state=FAILED).",
"nullable": true
}
}
}
}
}
},
"400": {
"description": "**HTTP Status Code:** `400` <br>\n Bad Request \n\n "
},
"401": {
"description": "**HTTP Status Code:** `401` <br>\n Unauthorized \n\n "
},
"403": {
"description": "**HTTP Status Code:** `403` <br>\n Forbidden \n\n "
},
"404": {
"description": "**HTTP Status Code:** `404` <br>\n Not Found \n\n "
},
"429": {
"description": "**HTTP Status Code:** `429` <br>\n Too Many Requests. Too Many Requests. For more information, see [rate limits](https://developers.zoom.us/docs/api/rate-limits/). \n\n "
},
"500": {
"description": "**HTTP Status Code:** `500` <br>\n Internal Server Error \n\n "
}
},
"security": [
{
"openapi_oauth": [],
"openapi_authorization": []
}
],
"x-extensions": {
"x-permissions": []
}
},
"delete": {
"tags": [
"Interpreter"
],
"summary": "Cancel Batch Interpreter Job",
"description": "Cancels a batch interpretation job.\n\nOnly jobs in QUEUED or PROCESSING state can be canceled.\n\nSuccessfully canceled jobs transition to CANCELED state. Jobs that are already SUCCEEDED, FAILED, or CANCELED cannot be canceled.\n\n**[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `LIGHT`",
"operationId": "cancelBatchInterpretJob",
"parameters": [
{
"name": "jobId",
"in": "path",
"description": "The unique identifier for the batch interpretation job.",
"required": true,
"schema": {
"type": "string",
"example": "job_abc123"
}
}
],
"requestBody": {
"description": "Cancels a batch interpretation job.\n\nOnly jobs in QUEUED or PROCESSING state can be canceled."
},
"responses": {
"204": {
"description": "Job canceled successfully. No content returned."
},
"404": {
"description": "**HTTP Status Code:** `404` <br>\n Not Found Not Found \n\n "
},
"409": {
"description": "**HTTP Status Code:** `409` <br>\n Conflict Conflict \n\n "
},
"429": {
"description": "**HTTP Status Code:** `429` <br>\n Too Many Requests. Too Many Requests. For more information, see [rate limits](https://developers.zoom.us/docs/api/rate-limits/). \n\n "
},
"500": {
"description": "**HTTP Status Code:** `500` <br>\n Internal Server Error Internal Server Error \n\n "
}
},
"security": [
{
"openapi_oauth": [],
"openapi_authorization": []
}
],
"x-extensions": {
"x-permissions": []
}
}
},
"/aiservices/interpreter/translate": {
"post": {
"tags": [
"Interpreter"
],
"summary": "Interpret (FAST mode)",
"description": "\n\n**[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `LIGHT`",
"operationId": "createTranslate",
"requestBody": {
"description": "Submits text and interpretation configuration for synchronous translation.",
"content": {
"application/json": {
"schema": {
"required": [
"config",
"text"
],
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "The text to interpret/translate. Max size is 4K characters.",
"example": "Hello and welcome to the meeting."
},
"config": {
"type": "object",
"properties": {
"source_language": {
"type": "string",
"description": "The source language ISO locale (e.g., \"en-US\"). Leave empty for auto-detect. Supported languages: English (en), Chinese (Simplified) (zh), Japanese (ja), Spanish (es), French (fr), German (de), Portuguese (pt), Italian (it), Arabic (ar)",
"example": "en-US"
},
"target_languages": {
"type": "array",
"description": "The target language ISO locales to translate into.",
"example": [
"es-ES",
"fr-FR",
"de-DE"
],
"items": {