-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi3.yaml
More file actions
1001 lines (998 loc) · 30.7 KB
/
openapi3.yaml
File metadata and controls
1001 lines (998 loc) · 30.7 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: Pagecall Public API - OpenAPI 3.0
description: |-
This is a official Pagecall API Documents written in OpenAPI 3.0.
Responses from the Pagecall API may contain more information, but what is not stated in this document may change at any time without any notice.
termsOfService: https://pplink.notion.site/774e4131813b47f8b06e3da4524604e8
contact:
email: support@pagecall.com
version: 1.0.0
servers:
- url: https://api.pagecall.com/v1
tags:
- name: room
description: Operations about room resources
paths:
/rooms:
get:
security:
- ApiKeyAuth: []
tags: [room]
summary: List Rooms
description: List all accessible rooms
operationId: listRooms
parameters:
- in: query
name: offset
schema:
type: integer
description: The number of items to skip before starting to collect the result set
- in: query
name: limit
schema:
type: integer
description: The numbers of items to return
- in: query
name: name
schema:
type: string
description: Exact name of the room to search.
- in: query
name: layout
schema:
type: string
description: Layout name to search.
- in: query
name: is_terminated
schema:
type: boolean
description: Filter rooms by their termination status
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
properties:
rooms:
type: array
items:
$ref: "#/components/schemas/Room"
example:
- id: "000585f36eed9e8fb6b655b4"
type: "private"
name: "Monthly Meeting Room with Design Class"
- id: "000235f36efd9e8db6bc55b4"
type: "public"
name: "Daily Meet"
- id: "000935fc6efd9f8db61c35b4"
type: "open"
name: "Free Disgn Class"
paging:
$ref: "#/components/schemas/Paging"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
post:
security:
- ApiKeyAuth: []
tags: [room]
summary: Create Room
description: Create a new room
operationId: createRoom
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/CreateRoomRequest"
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
properties:
room:
$ref: "#/components/schemas/Room"
paging:
$ref: "#/components/schemas/Paging"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
/rooms/{id}:
parameters:
- in: path
name: id
required: true
schema:
type: string
description: room id
example: 000585f36eed9e8fb6b655b4
get:
security:
- ApiKeyAuth: []
tags: [room]
summary: Get Room
description: Get a single room info
operationId: getRoom
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
properties:
room:
$ref: "#/components/schemas/Room"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
put:
security:
- ApiKeyAuth: []
tags: [room]
summary: Update Room
description: Update some of room settings
operationId: updateRoom
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateRoomRequest"
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
properties:
room:
$ref: "#/components/schemas/Room"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
delete:
security:
- ApiKeyAuth: []
tags: [room]
summary: Delete Room
description: Delete room
operationId: deleteRoom
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
properties:
room:
$ref: "#/components/schemas/Room"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
/rooms/{room_id}/sessions:
parameters:
- in: path
name: room_id
required: true
schema:
type: string
example: 000585f36eed9e8fb6b655b4
get:
security:
- ApiKeyAuth: []
tags: [room]
summary: Get Sessions in a Room
description: Get a list of sessions in a meeting room
operationId: GetRoomSessions
parameters:
- in: query
name: user_id
description: (Optional) Filter by user_id
schema:
type: string
- in: query
name: is_connecting
description: (Optional) Filter by their online status
schema:
type: boolean
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
properties:
sessions:
type: array
items:
$ref: "#/components/schemas/Session"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
/rooms/{room_id}/pages/create_many:
parameters:
- in: path
name: room_id
required: true
schema:
type: string
description: room id
example: 000585f36eed9e8fb6b655b4
post:
security:
- ApiKeyAuth: []
tags: [room]
summary: Create Pages For Room
description: Create new pages in a meeting room (Bulk API)
operationId: CreateRoomsPage
requestBody:
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Page"
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
properties:
pages:
type: array
description: Created pages
items:
type: object
properties:
id:
type: string
entities:
$ref: "#/components/schemas/Entity"
example:
- id: "000585f36eed9e8fb6b655b4"
entities:
- type: Image
src: "https://picsum.photos/id/237/536/354"
- id: "000585f36eed9e8fb6b655b5"
entities:
- type: Image
src: "https://picsum.photos/id/237/536/354"
- type: Image
src: "https://picsum.photos/id/237/536/354"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
/rooms/{room_id}/members:
parameters:
- in: path
name: room_id
required: true
schema:
type: string
description: room id
example: 000585f36eed9e8fb6b655b4
get:
security:
- ApiKeyAuth: []
tags: [member]
summary: List Members
description: List Joined in the Room
operationId: ListMembers
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
properties:
members:
type: array
example:
- id: "000585f36eed9e8fb6b655b4"
user_id: external_user_20312
room_id: 000585f36eed9e8fb6b655b4
type: "host"
- id: "000585f36eed9e8fb6b655b4"
user_id: external_user_102932
room_id: 000585f36eed9e8fb6b655b4
type: "guest"
items:
$ref: "#/components/schemas/Member"
paging:
$ref: "#/components/schemas/Paging"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
post:
security:
- ApiKeyAuth: []
tags: [member]
summary: Create Members
description: Add Member to the Room
operationId: CreateMember
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/CreateMemberRequest"
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
required:
- member
properties:
member:
$ref: "#/components/schemas/Member"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
/rooms/{room_id}/members/{member_id}:
parameters:
- in: path
name: room_id
required: true
schema:
type: string
description: room id
example: 000585f36eed9e8fb6b655b4
- in: path
name: member_id
required: true
schema:
type: string
description: member id
example: external_user_102932
get:
security:
- ApiKeyAuth: []
tags: [member]
summary: Get Member
description: Get Member
operationId: GetMember
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
required:
- member
properties:
member:
$ref: "#/components/schemas/Member"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
put:
security:
- ApiKeyAuth: []
tags: [member]
summary: Update Member
description: Update Member
operationId: UpdateMember
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateMemberRequest"
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
required:
- member
properties:
member:
$ref: "#/components/schemas/Member"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
/rooms/{room_id}/message:
parameters:
- in: path
name: room_id
required: true
schema:
type: string
description: room id
example: 000585f36eed9e8fb6b655b4
post:
security:
- ApiKeyAuth: []
tags: [user]
summary: Send a message to a room
description: Send a message to live sessions in a room
operationId: roomsSendMessage
requestBody:
content:
application/json:
schema:
type: object
required:
- message
properties:
message:
type: string
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
properties:
message:
type: string
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
/users:
get:
security:
- ApiKeyAuth: []
tags: [user]
summary: List Users
description: List users within workspace
operationId: ListUsers
parameters:
- in: query
name: email_search_query
schema:
type: string
description: Filter users by their email
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
required:
- users
properties:
users:
type: array
items:
$ref: "#/components/schemas/User"
example:
- user_id: "user-1"
name: "John"
default_member_type: "guest"
access_token: "lw11gv95db-QcA3bDvuBQVomEmkAq1G-"
id: "642cdbef85fd90a348d9da1a"
- user_id: "user-2"
name: "Mike"
default_member_type: "guest"
access_token: "db32gv15d9-QcA3bDvuBQVomEmkAq1G-"
id: "642cdbef85fd90a348d9da1a"
paging:
$ref: "#/components/schemas/Paging"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
post:
security:
- ApiKeyAuth: []
tags: [user]
summary: Create User
description: Create user within workspace
operationId: createUser
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/CreateUserRequest"
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
properties:
user:
$ref: "#/components/schemas/User"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
/users/{user_id}:
parameters:
- in: path
name: user_id
required: true
schema:
type: string
description: "`user_id` of the user"
example: external_user_102932
get:
security:
- ApiKeyAuth: []
tags: [user]
summary: Get User
description: Get user with user id
operationId: GetUser
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
required:
- users
properties:
user:
$ref: "#/components/schemas/User"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
put:
security:
- ApiKeyAuth: []
tags: [user]
summary: Update User
description: Update user with user id
operationId: UpdateUser
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateUserRequest"
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
required:
- users
properties:
user:
$ref: "#/components/schemas/User"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
delete:
security:
- ApiKeyAuth: []
tags: [user]
summary: Delete User
description: Delete user with user id
operationId: DeleteUser
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
required:
- users
properties:
user:
$ref: "#/components/schemas/User"
"400":
description: Invalid Parameters Supplied or Unauthenticated or Unauthorized
"500":
description: Validation exception
components:
schemas:
Paging:
description: Details of pagination used for current responses.
type: object
required:
- limit
- offset
- total
properties:
limit:
type: number
default: 30
offset:
type: number
default: 0
total:
type: number
example: 0
Room:
description: Information about room
required:
- id
- type
- name
properties:
id:
type: string
example: 000585f36eed9e8fb6b655b4
description: ID of the room
application_id:
type: string
example: 000585f36eed9e8fb6b655b4
description: ID of the workspace
type:
$ref: "#/components/schemas/RoomType"
created_user_id:
type: string
example: "#DEPRECATED#"
description: "*[Deprecated]* ID of the user who create this room"
name:
type: string
example: "Weekly Meet"
description: Human readable name of the room
thumbnail_url:
type: string
example: https://example.url/thumbnail.png
description: Generated thumbnail for this room
last_thumbnail_updated_at:
type: string
example: "#DEPRECATED#"
description: "*[Deprecated]* Last update time of generated thumbnail"
format: date-time
room_template_id:
type: string
example: "#DEPRECATED#"
description: "*[Deprecated]* **Use `layout` instead.** ID of the room template used by this room"
layout:
type: string
example: "SixAll"
description: "How the room looks"
record:
type: boolean
description: Whether this room is recorded or not.
meeting_time:
type: integer
example: 200000
description: Total meeting time in seconds
is_terminated:
type: boolean
example: "#DEPRECATED#"
description: "*[Deprecated]* **Use `terminated_at` instead.** Whether this room is terminated or not. If true, not available to join the room"
is_ephemeral:
type: boolean
example: "#DEPRECATED#"
description: "*[Deprecated]* Whether this room is for temporary or not. If true and all the members of this room leave, the room will be closed"
is_recurring:
type: boolean
example: "#DEPRECATED#"
description: "*[Deprecated]* Whether this meeting occurs regularly or not. If true, it will be reopened according to a predefined schedule."
started_at:
example: "2023-01-01T01:00:00.000Z"
type: string
description: The meeting is started at specified time format
format: date-time
terminated_at:
example: "2023-01-01T01:00:00.000Z"
type: string
description: The room is terminated at specified time format
format: date-time
updated_at:
example: "2023-01-01T01:00:00.000Z"
type: string
description: The room settings are changed at specified time format
format: date-time
created_at:
example: "2023-01-01T01:00:00.000Z"
type: string
description: The room is created at specified time format
format: date-time
MemberType:
type: string
description: |
Type of user in this room
- guest: The user is guest.
- host: The user is host. This user has administrator privileges.
- monitor: The user is observer. Can watch the meeting, but can not join.
enum:
- guest
- host
- monitor
example: guest
default: guest
RoomMember:
type: object
description: Information about the member joined the room
required:
- user_id
- type
properties:
user_id:
type: string
description: "`user_id` of the user in application (workspace) scope"
example: 000585f36eed9e8fb6b655b4
type:
$ref: "#/components/schemas/MemberType"
name:
type: string
description: Display name of the user in the meeting room
example: user-1
RoomType:
type: string
description: |
Room can have three different type
* `open` - anyone who obtain this room url can join and replay the meet.
* `public` - any member who haved joined in same worksapce can join and replay the meet.
* `private` - only invited workspace user can join and replay the meet.
enum:
- open
- public
- private
example: public
UpdateRoomRequest:
type: object
description: Request format to update setting of exisiting room
required:
- application_id
properties:
name:
type: string
description: Set this to chagne current room name
example: "Monthly Meetting - 2"
is_terminated:
type: boolean
description: Set true to close this room
default: false
CreateRoomRequest:
type: object
description: Request format to create a new room
required:
- name
- type
properties:
name:
type: string
description: Human-readable name of the room
example: "Meeting Room - 1"
type:
$ref: "#/components/schemas/RoomType"
record:
type: boolean
description: All meeting will be recorded
default: true
max_meeting_seconds:
type: integer
description:
Determines the maximum meeting time in seconds. Once this time has elapsed, the meeting room will be automatically terminated.
The 'meeting time' refers to the duration during which two or more participants are connected. If a `max_meeting_seconds` is set, the timer UI will display the remaining meeting time, rather than the elapsed time.
members:
type: array
description: Specify inviting user_id and type
items:
$ref: "#/components/schemas/RoomMember"
webhook:
type: object
required:
- url
properties:
url:
type: string
description: an URL to which the Pagecall server will send the webhook
headers:
type: object
description: Headers to include when sending the webhook, which can be useful when authentication is required.
# @scotty: UpdateUserRequest ⊂ CreateUserRequest ⊂ User,
# However, we can not use "allOf" feature in openapi as mintlify dose not recognize "allOf" properties properly
User:
type: object
properties:
user_id:
type: string
description: "ID of the user. Will override exisiting user if the specified ID already being used. Please note that `id` field is only used internally."
example: external_user_102932
name:
type: string
description: Name of the user.
example: scotty
profile_url:
type: string
example: https://www.gravatar.com/avatar/00000000000000000000000000000000?d=mp&f=y
description: Profile image of the user
default_member_type:
description: Default type of member when invited to room
default: "guest"
$ref: "#/components/schemas/MemberType"
access_token:
type: string
description: Access token to authenticate as the user.
example: "TfowtRYBs0E_trzoTaCmAXKzB1JxDDhi"
created_at:
type: string
example: "2023-01-01T01:00:00.000Z"
description: Creation time of the user
format: date-time
updated_at:
type: string
example: "2023-01-01T01:00:00.000Z"
description: Last modified time of the user
format: date-time
CreateUserRequest:
type: object
required:
- user_id
properties:
user_id:
type: string
description: "ID of the user. Will override exisiting user if the specified ID already being used. Please note that `id` field is only used internally."
example: "external_user_102932"
name:
type: string
description: Name of the user.
example: scotty
profile_url:
type: string
example: https://www.gravatar.com/avatar/00000000000000000000000000000000?d=mp&f=y
description: Profile image of the user
default_member_type:
description: Default type of member when invited to room
default: "guest"
$ref: "#/components/schemas/MemberType"
UpdateUserRequest:
type: object
properties:
name:
type: string
description: Name of the user.
example: scotty
profile_url:
type: string
example: https://www.gravatar.com/avatar/00000000000000000000000000000000?d=mp&f=y
description: Profile image of the user
default_member_type:
description: Default type of member when invited to room
default: "guest"
$ref: "#/components/schemas/MemberType"
Member:
type: object
required:
- id
- user_id
- room_id
- type
properties:
id:
type: string
description: generated member id
example: 642d103ce95bc9dc22ef789f
user_id:
type: string
description: "`user_id` of the user."
example: "external_user_102932"
room_id:
type: string
example: 000585f36eed9e8fb6b655b4
description: ID of the room
type:
$ref: "#/components/schemas/MemberType"
CreateMemberRequest:
type: object
required:
- user_id
properties:
user_id:
type: string
description: "`user_id` of the user."
example: "external_user_102932"
type:
$ref: "#/components/schemas/MemberType"
UpdateMemberRequest:
type: object
properties:
name:
type: string
description: Change display name in meeting room
type:
$ref: "#/components/schemas/MemberType"
is_blocked:
type: boolean
description: Kick the user from the room immediately, Works only on private type meeting room.
EntityType:
type: string
description: |
Type of entity in a page. Currently, manipulation through the API is only allowed for Image entities.
- Image: Image
enum:
- Image
example: Image
Entity:
type: object
required:
- type
properties:
type:
$ref: "#/components/schemas/EntityType"
src:
type: string
description: Source url (required for Image)
example: "https://picsum.photos/id/237/536/354"
fixed:
type: boolean
description: If true, entity is created in a locked state
Page:
type: object
properties:
entities:
type: array
items:
$ref: "#/components/schemas/Entity"
size:
type: object
description: Size of a page
required:
- width
- height
properties:
width:
type: integer
height:
type: integer
default:
width: 4000
height: 3000
index:
type: integer
Session:
type: object
required:
- id
- member_id
properties:
id:
type: string
description: ID of the session
example: 000585f36eed9e8fb6b655b4
member_id:
type: string
description: ID for the member associated with the session
example: 000585f36eed9e8fb6b655b4
user_id:
type: string
description: ID for the user associated with the session. It can be empty if the session represents an anonymous user.
example: 000585f36eed9e8fb6b655b4
connected_at:
type: string
description: Datetime when the session was established
example: "2023-01-01T01:00:00.000Z"
disconnected_at:
type: string
description: Datetime when the session was ended. It can be empty if the session is online.
example: "2023-01-01T01:30:00.000Z"
securitySchemes:
ApiKeyAuth:
type: http
scheme: bearer