-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathallEndpoints.txt
44501 lines (42443 loc) · 873 KB
/
allEndpoints.txt
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
#Below is everything what was listed by Rift Explorer
#just for quick CTRL+F
##########################################################################
.20.248.1315
builtin Show/Hide List Operations Expand Operations
POST /AsyncDelete Cancels the asynchronous operation or removes its completion status.
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
asyncToken
(required)
ID of the asynchronous operation to remove
query integer
Try it out!
POST /AsyncResult Retrieves the result of a completed asynchronous operation.
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
asyncToken
(required)
ID of the asynchronous operation to check
query integer
Try it out!
POST /AsyncStatus Retrieves details on the current state of an asynchronous operation.
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
asyncToken
(required)
ID of the asynchronous operation to check
query integer
Try it out!
POST /Cancel Attempts to cancel an asynchronous operation
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
asyncToken
(required)
Operation to cancel
query integer
Try it out!
POST /Exit Closes the connection.
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Try it out!
POST /Help Returns information on available functions and types
Implementation Notes
With no arguments, returns a list of all available functions and types along with a short description. If a function or type is specified, returns detailed information about it.
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
target
Name of the function or type to describe
query string
format
Format for returned information
query string
Try it out!
POST /Subscribe Subscribes to a given event
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
eventName
(required)
Name of the event to subscribe to
query string
format
Desired format to receive events in. If unspecified, events will be sent in the active result format at the time.
query string
Try it out!
POST /Unsubscribe Unsubscribes from a given event
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
eventName
(required)
Name of the event to unsubscribe from
query string
Try it out!
POST /WebSocketFormat Controls the console output format
Implementation Notes
With no arguments, returns the current output format being used. If a format is specified, switches the console output to that format.
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
format
Output format to switch to
query string
Try it out!
GET /async/v1/result/{asyncToken} Retrieves the result of a completed asynchronous operation.
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
asyncToken
(required)
ID of the asynchronous operation to check
path integer
asyncToken
(required)
ID of the asynchronous operation to check
path integer
Try it out!
DELETE /async/v1/status/{asyncToken} Cancels the asynchronous operation or removes its completion status.
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
asyncToken
(required)
ID of the asynchronous operation to remove
path integer
asyncToken
(required)
ID of the asynchronous operation to remove
path integer
Try it out!
GET /async/v1/status/{asyncToken} Retrieves details on the current state of an asynchronous operation.
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
asyncToken
(required)
ID of the asynchronous operation to check
path integer
asyncToken
(required)
ID of the asynchronous operation to check
path integer
Try it out!
GET /swagger/v1/api-docs Retrieves the API documentation resource listing
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Try it out!
GET /swagger/v1/api-docs/{api} Retrieves the API declaration for a supported API
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
api
(required)
API to get a declaration for
path string
api
(required)
API to get a declaration for
path string
Try it out!
GET /swagger/v2/swagger.json Retrieves the API documentation
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Try it out!
GET /swagger/v3/openapi.json Retrieves the API documentation
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Try it out!
cookie-jar Show/Hide List Operations Expand Operations
GET /cookie-jar/v1/cookies Get all cookies.
Response Class (Status 200)
Successful response
ModelModel Schema
[
{
"domain": "string",
"expires": 0,
"httponly": true,
"name": "string",
"path": "string",
"secure": true,
"url": "string",
"value": "string"
}
]
Response Content Type
Try it out!
POST /cookie-jar/v1/cookies Set a cookie.
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
cookie
(required)
Parameter content type:
Cookie to set
body
ModelModel Schema
[
{
"domain": "string",
"expires": 0,
"httponly": true,
"name": "string",
"path": "string",
"secure": true,
"url": "string",
"value": "string"
}
]
Click to set as parameter value
Try it out!
core Show/Hide List Operations Expand Operations
POST /riotclient/addorupdatemetric Adds or Updates a Metric
Parameters
Parameter Value Description Parameter Type Data Type
group
(required)
Name of metric group
query string
object
(required)
Name of metric object
query string
name
(required)
Name of metric item
query string
value
(required)
Value to store
query long
Response Messages
HTTP Status Code Reason Response Model Headers
204
No content
Try it out!
data-store Show/Hide List Operations Expand Operations
GET /data-store/v1/install-dir Gets the current install directory (used internally.)
Response Class (Status 200)
Response Content Type
Try it out!
GET /data-store/v1/install-settings/{path} Get the data for the specified key from the install settings.
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
path
(required)
The path to the settings key
path string
Try it out!
POST /data-store/v1/install-settings/{path} Set the data for the specified key from the install settings.
Parameters
Parameter Value Description Parameter Type Data Type
path
(required)
The path to the settings key
path string
data
(required)
Parameter content type:
The data to assign to the key
body
ModelModel Schema
{}
Click to set as parameter value
Response Messages
HTTP Status Code Reason Response Model Headers
204
No content
Try it out!
GET /data-store/v1/system-settings/{path} Get the setting for the specified key.
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
path
(required)
The path to the settings key
path string
Try it out!
default Show/Hide List Operations Expand Operations
POST /LoggingGetEntries Gets all buffered log entries since the last call.
Response Class (Status 200)
Successful response
ModelModel Schema
[
{
"message": "string",
"severity": "Okay"
}
]
Response Content Type
Try it out!
POST /LoggingMetrics Returns all metrics
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Try it out!
POST /LoggingMetricsMetadata Returns metadata for all metrics
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Try it out!
POST /LoggingStart Initializes the logging system.
Parameters
Parameter Value Description Parameter Type Data Type
buffered
Specifies whether logs will be buffered for LoggingGetEntries to work
query boolean
severity
Minimum severity level to fire a log event
query string
Response Messages
HTTP Status Code Reason Response Model Headers
204
No content
Try it out!
POST /LoggingStop Finalizes the logging system.
Response Messages
HTTP Status Code Reason Response Model Headers
204
No content
Try it out!
POST /MemoryFilterEnable Memory filter prints to the log when memory is allocated or freed that matches the filter parameters set in MemoryFilterSet
Parameters
Parameter Value Description Parameter Type Data Type
enable
Enable/disable the memory filter
query integer
Response Messages
HTTP Status Code Reason Response Model Headers
204
No content
Try it out!
POST /MemoryFilterSet Sets the filter parameters for when to print to the log. Use MemoryFilterEnable to start/stop the print outs
Parameters
Parameter Value Description Parameter Type Data Type
minSize
Optional filter for minimum size to output
query integer
maxSize
Optional filter for maximum size to output
query integer
minAddress
Optional filter for minimum address in hex to output
query string
maxAddress
Optional filter for maximum address in hex to output
query string
Response Messages
HTTP Status Code Reason Response Model Headers
204
No content
Try it out!
POST /MemoryPools Returns current pool usage
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
contextName
Name of the context to find (optional)
query string
Try it out!
POST /MemoryStats Returns aggregate information about memory usage
Implementation Notes
'allocation_count' is deprecated, use 'allocated_count' instead.
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Try it out!
POST /MemoryUsage Returns current memory usage by callstack site
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
minSize
Minimum size of total allocations at call site in order to print (optional: MEMORYUSAGE_MINSIZE default)
query integer
minCount
Minimum count of total allocations at call site in order to print (optional: MEMORYUSAGE_MINCOUNT default)
query integer
Try it out!
logging Show/Hide List Operations Expand Operations
POST /riotclient/addorupdatemetric Adds or Updates a Metric
Parameters
Parameter Value Description Parameter Type Data Type
group
(required)
Name of metric group
query string
object
(required)
Name of metric object
query string
name
(required)
Name of metric item
query string
value
(required)
Value to store
query long
Response Messages
HTTP Status Code Reason Response Model Headers
204
No content
Try it out!
performance Show/Hide List Operations Expand Operations
GET /performance/v1/memory Returns process memory status
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Try it out!
POST /performance/v1/process/{processId} Registers the process and includes it with the performance information.
Parameters
Parameter Value Description Parameter Type Data Type
processId
(required)
Id of the process to track performance information.
path integer
Response Messages
HTTP Status Code Reason Response Model Headers
204
No content
Try it out!
GET /performance/v1/report Returns the various performance information for the cef processes
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Try it out!
POST /performance/v1/report/restart Restarts the CPU timing information and returns the results from PerfReportProcesses
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
sampleLength
Time in seconds for each CPU timing sample.
query integer
sampleCount
Number of samples to record.
query integer
Try it out!
GET /performance/v1/system-info Returns hardware and software specs for the machine the client is running on.
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
full
Returns all available system information
query integer
Try it out!
Plugin Asset Serving Show/Hide List Operations Expand Operations
GET /{plugin}/assets/{path} Download a backend asset
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
plugin
(required)
Plugin name to serve from
path string
path
(required)
Path to the asset to serve
path string
if-none-match
optional ETag of the asset that the caller has cached
header string
Try it out!
HEAD /{plugin}/assets/{path} Download the header for a backend asset
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
plugin
(required)
Plugin name to serve from
path string
path
(required)
Path to the asset to serve
path string
if-none-match
optional ETag of the asset that the caller has cached
header string
Try it out!
Plugin entitlements Show/Hide List Operations Expand Operations
GET /entitlements/v1/token
Response Class (Status 200)
Successful response
ModelModel Schema
{
"accessToken": "string",
"entitlements": [
"string"
],
"issuer": "string",
"subject": "string",
"token": "string"
}
Response Content Type
Try it out!
Plugin gcloud-voice-chat Show/Hide List Operations Expand Operations
GET /gcloud-voice-chat/v1/audio-properties
Response Class (Status 200)
Successful response
ModelModel Schema
{
"fastEnergyMeter": 0,
"isLoopbackEnabled": true,
"isMicActive": true,
"isSpeakerActive": true,
"micEnergy": 0,
"micVolume": 0,
"noiseFloorMeter": 0,
"speakerEnergy": 0,
"speakerVolume": 0,
"speechThresholdMeter": 0
}
Response Content Type
Try it out!
GET /gcloud-voice-chat/v1/call-stats/aggregate
Response Class (Status 200)
Successful response
ModelModel Schema
{
"callId": "string",
"captureDeviceConsecutivelyReadCount": [
0
],
"codecName": "string",
"currentBars": 0,
"currentOpusBandwidth": 0,
"currentOpusBitRate": 0,
"currentOpusComplexity": 0,
"currentOpusMaxPacketSize": 0,
"currentOpusVbrMode": 0,
"incomingDiscarded": 0,
"incomingOutOfTime": 0,
"incomingPacketloss": 0,
"incomingReceived": 0,
"lastLatencyMeasured": 0,
"latencyMeasurementCount": 0,
"latencyPacketsDropped": 0,
"latencyPacketsLost": 0,
"latencyPacketsMalformed": 0,
"latencyPacketsNegativeLatency": 0,
"latencyPacketsSent": 0,
"latencySum": 0,
"maxLatency": 0,
"minLatency": 0,
"outgoingSent": 0,
"plcOn": 0,
"plcSyntheticFrames": 0,
"rFactor": 0,
"renderDeviceErrors": 0,
"renderDeviceOverruns": 0,
"renderDeviceUnderruns": 0,
"sampleIntervalBegin": 0,
"sampleIntervalEnd": 0
}
Response Content Type
Try it out!
GET /gcloud-voice-chat/v1/call-stats/{id}
Response Class (Status 200)
Successful response
ModelModel Schema
[
{
"callId": "string",
"captureDeviceConsecutivelyReadCount": [
0
],
"codecName": "string",
"currentBars": 0,
"currentOpusBandwidth": 0,
"currentOpusBitRate": 0,
"currentOpusComplexity": 0,
"currentOpusMaxPacketSize": 0,
"currentOpusVbrMode": 0,
"incomingDiscarded": 0,
"incomingOutOfTime": 0,
"incomingPacketloss": 0,
"incomingReceived": 0,
"lastLatencyMeasured": 0,
"latencyMeasurementCount": 0,
"latencyPacketsDropped": 0,
"latencyPacketsLost": 0,
"latencyPacketsMalformed": 0,
"latencyPacketsNegativeLatency": 0,
"latencyPacketsSent": 0,
"latencySum": 0,
"maxLatency": 0,
"minLatency": 0,
"outgoingSent": 0,
"plcOn": 0,
"plcSyntheticFrames": 0,
"rFactor": 0,
"renderDeviceErrors": 0,
"renderDeviceOverruns": 0,
"renderDeviceUnderruns": 0,
"sampleIntervalBegin": 0,
"sampleIntervalEnd": 0
}
]
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
id
(required)
path string
Try it out!
GET /gcloud-voice-chat/v1/codec-settings
Response Class (Status 200)
Successful response
ModelModel Schema
{
"codecBandwidth": 0,
"codecBitrate": 0,
"codecComplexity": 0,
"codecVbrMode": 0
}
Response Content Type
Try it out!
PUT /gcloud-voice-chat/v1/codec-settings
Parameters
Parameter Value Description Parameter Type Data Type
settings
(required)
Parameter content type:
body
ModelModel Schema
{
"codecBandwidth": 0,
"codecBitrate": 0,
"codecComplexity": 0,
"codecVbrMode": 0
}
Click to set as parameter value
Response Messages
HTTP Status Code Reason Response Model Headers
204
No content
Try it out!
GET /gcloud-voice-chat/v1/config
Response Class (Status 200)
Successful response
ModelModel Schema
{
"accessTokenUri": "string",
"authTokenUri": "string",
"jwt2gvtUrl": "string",
"logLevel": 0,
"logLevelName": "string",
"logsPath": "string",
"provider": "string",
"useExternalAuth": true,
"voiceDomain": "string",
"voiceServerUri": "string"
}
Response Content Type
Try it out!
GET /gcloud-voice-chat/v1/errors
Response Class (Status 200)
Successful response
ModelModel Schema
[
{
"count": 0,
"error": {
"errorString": "string",
"responseType": 0,
"responseTypeString": "string",
"returnCode": 0,
"statusCode": 0,
"statusString": "string"
},
"timeOfLastError": 0
}
]
Response Content Type
Try it out!
GET /gcloud-voice-chat/v1/push-to-talk
Response Class (Status 200)
Successful response
ModelModel Schema
{
"pttEnabled": true,
"pttKeyBinding": "string"
}
Response Content Type
Try it out!
PUT /gcloud-voice-chat/v1/push-to-talk
Response Class (Status 200)
Successful response
ModelModel Schema
{}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
pushToTalk
(required)
Parameter content type:
body
ModelModel Schema
{
"pttEnabled": true,
"pttKeyBinding": "string"
}
Click to set as parameter value
Try it out!
POST /gcloud-voice-chat/v1/push-to-talk/check-available
Response Class (Status 200)
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
prompt
(required)
Parameter content type:
body integer
Try it out!
POST /gcloud-voice-chat/v1/sessions/{id}
Response Class (Status 200)
Successful response
ModelModel Schema
{
"id": "string",
"isMuted": true,
"isTransmitEnabled": true,
"participants": [
{
"energy": 0,
"id": "string",
"isMuted": true,
"isSpeaking": true,
"name": "string",
"speakingTimestamp": 0,
"uri": "string",
"volume": 0
}
],
"status": "active",
"volume": 0
}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
id
(required)
path string
Try it out!
GET /gcloud-voice-chat/v2/devices/capture
Response Class (Status 200)
Successful response
ModelModel Schema
[
{
"handle": "string",
"is_current_device": true,
"is_default": true,
"is_effective_device": true,
"name": "string"
}
]
Response Content Type
Try it out!
GET /gcloud-voice-chat/v2/devices/render
Response Class (Status 200)
Successful response
ModelModel Schema
[
{
"handle": "string",
"is_current_device": true,
"is_default": true,
"is_effective_device": true,
"name": "string"
}
]
Response Content Type
Try it out!
DELETE /gcloud-voice-chat/v2/sessions
Response Messages
HTTP Status Code Reason Response Model Headers
204
No content
Try it out!
GET /gcloud-voice-chat/v2/sessions
Response Class (Status 200)
Successful response
ModelModel Schema
[
{
"id": "string",
"isMuted": true,
"isTransmitEnabled": true,
"participants": [
{
"energy": 0,
"id": "string",
"isMuted": true,
"isSpeaking": true,
"name": "string",
"speakingTimestamp": 0,
"uri": "string",
"volume": 0
}
],
"status": "active",
"volume": 0
}
]
Response Content Type
Try it out!
POST /gcloud-voice-chat/v2/sessions
Response Class (Status 200)
Successful response
ModelModel Schema
{
"id": "string",
"isMuted": true,
"isTransmitEnabled": true,
"participants": [
{
"energy": 0,
"id": "string",
"isMuted": true,
"isSpeaking": true,
"name": "string",
"speakingTimestamp": 0,
"uri": "string",
"volume": 0
}
],
"status": "active",
"volume": 0
}
Response Content Type
Parameters
Parameter Value Description Parameter Type Data Type
JWT
(required)
header string
Try it out!
DELETE /gcloud-voice-chat/v2/sessions/{id}
Parameters
Parameter Value Description Parameter Type Data Type
id
(required)
path string
Response Messages
HTTP Status Code Reason Response Model Headers
204
No content
Try it out!
GET /gcloud-voice-chat/v2/sessions/{id}
Response Class (Status 200)
Successful response
ModelModel Schema
{
"id": "string",
"isMuted": true,
"isTransmitEnabled": true,