-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsessions-api-swagger.json
More file actions
737 lines (737 loc) · 26.2 KB
/
sessions-api-swagger.json
File metadata and controls
737 lines (737 loc) · 26.2 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
{
"swagger": "2.0",
"securityDefinitions": {
"oauth2": {
"flow": "application",
"tokenUrl": "https://api.coviu.com/v1/auth/token",
"type": "oauth2"
}
},
"host": "api.coviu.com/v1",
"info": {
"version": "1.0",
"title": "Coviu Session API",
"license": {
"name": "MIT"
},
"description": "Coviu provides a session based API for creating and restricting access to coviu calls. The core concepts exposed are* Session: A coviu call that occurs between two or more parties at a specified time, and has a finite duration.* Participants: Users who may participate in a coviu call.Participants join a call by following a session link in their browser, or mobile app. The session link identifiesthe participant, including their name, optional avatar, and importantly their role. As such, it is important thateach person joining the call be issued a different session link, i.e. have a distinct participant created for them. A participant's role identifies whether that user may access the call directly, or if they are required the be let inby an existing participant."
},
"definitions": {
"ParticipantCreationRequest": {
"type": "object",
"properties": {
"state": {
"type": "string"
},
"display_name": {
"type": "string"
},
"role": {
"type": "string"
},
"picture": {
"type": "string"
}
}
},
"UnitResponse": {
"required": [
"ok"
],
"type": "object",
"properties": {
"ok": {
"type": "boolean"
}
}
},
"SessionPage": {
"required": [
"content",
"more"
],
"type": "object",
"properties": {
"page_count": {
"maximum": 9223372036854775807,
"minimum": -9223372036854775808,
"type": "integer"
},
"more": {
"type": "boolean"
},
"page": {
"maximum": 9223372036854775807,
"minimum": -9223372036854775808,
"type": "integer"
},
"page_size": {
"maximum": 9223372036854775807,
"minimum": -9223372036854775808,
"type": "integer"
},
"content": {
"items": {
"$ref": "#/definitions/Session"
},
"type": "array"
}
}
},
"SessionUpdateRequest": {
"type": "object",
"properties": {
"picture": {
"type": "string"
},
"start_time": {
"$ref": "#/definitions/DateTime"
},
"end_time": {
"$ref": "#/definitions/DateTime"
},
"session_name": {
"type": "string"
}
}
},
"ParticipantPage": {
"required": [
"content",
"more"
],
"type": "object",
"properties": {
"page_count": {
"maximum": 9223372036854775807,
"minimum": -9223372036854775808,
"type": "integer"
},
"more": {
"type": "boolean"
},
"page": {
"maximum": 9223372036854775807,
"minimum": -9223372036854775808,
"type": "integer"
},
"page_size": {
"maximum": 9223372036854775807,
"minimum": -9223372036854775808,
"type": "integer"
},
"content": {
"items": {
"$ref": "#/definitions/Participant"
},
"type": "array"
}
}
},
"ParticipantUpdateRequest": {
"type": "object",
"properties": {
"state": {
"type": "string"
},
"display_name": {
"type": "string"
},
"role": {
"type": "string"
},
"picture": {
"type": "string"
}
}
},
"Participant": {
"type": "object",
"properties": {
"session_id": {
"type": "string"
},
"state": {
"type": "string"
},
"display_name": {
"type": "string"
},
"participant_id": {
"type": "string"
},
"client_id": {
"type": "string"
},
"role": {
"type": "string"
},
"picture": {
"type": "string"
},
"deleted_at": {
"type": "string"
},
"coviu_user_id": {
"type": "string"
},
"entry_url": {
"type": "string"
}
}
},
"Session": {
"required": [
"start_time",
"end_time"
],
"type": "object",
"properties": {
"feature_flags": {
"items": {
"type": "string"
},
"type": "array"
},
"session_id": {
"type": "string"
},
"team_id": {
"type": "string"
},
"client_id": {
"type": "string"
},
"participants": {
"items": {
"$ref": "#/definitions/Participant"
},
"type": "array"
},
"picture": {
"type": "string"
},
"start_time": {
"$ref": "#/definitions/DateTime"
},
"end_time": {
"$ref": "#/definitions/DateTime"
},
"canceled_time": {
"type": "string"
},
"session_name": {
"type": "string"
}
}
},
"SessionCreationRequest": {
"required": [
"start_time",
"end_time"
],
"type": "object",
"properties": {
"feature_flags": {
"items": {
"type": "string"
},
"type": "array"
},
"participants": {
"items": {
"$ref": "#/definitions/ParticipantCreationRequest"
},
"type": "array"
},
"picture": {
"type": "string"
},
"start_time": {
"$ref": "#/definitions/DateTime"
},
"end_time": {
"$ref": "#/definitions/DateTime"
},
"session_name": {
"type": "string"
}
}
},
"DateTime": {
"format": "date-time",
"type": "string"
}
},
"paths": {
"/participants/{participant_id}": {
"get": {
"responses": {
"404": {
"description": "`participant_id` not found"
},
"200": {
"schema": {
"$ref": "#/definitions/Participant"
},
"description": ""
}
},
"produces": [
"application/json"
],
"parameters": [
{
"required": true,
"in": "path",
"name": "participant_id",
"type": "string",
"description": "The participant id of the participant that the operation applies to."
}
],
"operationId": "getSessionParticipant",
"security": [
{
"oauth2": []
}
],
"description": "Get a single participant by its id.",
"tags": [
"Session"
]
},
"delete": {
"responses": {
"404": {
"description": "`participant_id` not found"
},
"200": {
"schema": {
"$ref": "#/definitions/UnitResponse"
},
"description": ""
}
},
"produces": [
"application/json"
],
"parameters": [
{
"required": true,
"in": "path",
"name": "participant_id",
"type": "string",
"description": "The participant id of the participant that the operation applies to."
}
],
"operationId": "deleteSessionParticipant",
"security": [
{
"oauth2": []
}
],
"description": "Cancel a session participant. The participant will no longer be able to enter the session. Once a participant has been canceled, it may not be uncanceled. A participant may not be canceled after a session has finished.",
"tags": [
"Session"
]
},
"put": {
"consumes": [
"application/json"
],
"responses": {
"404": {
"description": "`participant_id` not found"
},
"400": {
"description": "Invalid `body`"
},
"200": {
"schema": {
"$ref": "#/definitions/Participant"
},
"description": ""
}
},
"produces": [
"application/json"
],
"parameters": [
{
"required": true,
"in": "path",
"name": "participant_id",
"type": "string",
"description": "The participant id of the participant that the operation applies to."
},
{
"required": true,
"schema": {
"$ref": "#/definitions/ParticipantUpdateRequest"
},
"in": "body",
"name": "body"
}
],
"operationId": "updateSessionParticipant",
"security": [
{
"oauth2": []
}
],
"description": "It is possible to update a participant's name, role, picture, and state after it has been created.",
"tags": [
"Session"
]
}
},
"/sessions/{session_id}": {
"get": {
"responses": {
"404": {
"description": "`session_id` not found"
},
"400": {
"description": "Invalid `deleted_participants`"
},
"200": {
"schema": {
"$ref": "#/definitions/Session"
},
"description": ""
}
},
"produces": [
"application/json"
],
"parameters": [
{
"required": true,
"in": "path",
"name": "session_id",
"type": "string",
"description": "The session id of the session that the operation applies to."
},
{
"in": "query",
"name": "deleted_participants",
"type": "boolean",
"description": "Also include participants that have been removed from the session."
}
],
"operationId": "getSessionById",
"security": [
{
"oauth2": []
}
],
"description": "Get a single session by id.",
"tags": [
"Session"
]
},
"delete": {
"responses": {
"404": {
"description": "`session_id` not found"
},
"200": {
"schema": {
"$ref": "#/definitions/UnitResponse"
},
"description": ""
}
},
"produces": [
"application/json"
],
"parameters": [
{
"required": true,
"in": "path",
"name": "session_id",
"type": "string",
"description": "The session id of the session that the operation applies to."
}
],
"operationId": "deleteSession",
"security": [
{
"oauth2": []
}
],
"description": "A session that is scheduled for the future may be canceled. No participants will be able to join the session after it has been canceled, and it can not be uncanceled once it has been canceled. A session that has already started may not be canceled.",
"tags": [
"Session"
]
},
"put": {
"consumes": [
"application/json"
],
"responses": {
"404": {
"description": "`session_id` not found"
},
"400": {
"description": "Invalid `body`"
},
"200": {
"schema": {
"$ref": "#/definitions/Session"
},
"description": ""
}
},
"produces": [
"application/json"
],
"parameters": [
{
"required": true,
"in": "path",
"name": "session_id",
"type": "string",
"description": "The session id of the session that the operation applies to."
},
{
"required": true,
"schema": {
"$ref": "#/definitions/SessionUpdateRequest"
},
"in": "body",
"name": "body"
}
],
"operationId": "updateSession",
"security": [
{
"oauth2": []
}
],
"description": "It is possible to update some attributes of a session, namely the start and end time, session name and image. A session that has already finished may not be changed.",
"tags": [
"Session"
]
}
},
"/sessions": {
"post": {
"consumes": [
"application/json"
],
"responses": {
"400": {
"description": "Invalid `body`"
},
"200": {
"schema": {
"$ref": "#/definitions/Session"
},
"description": ""
}
},
"produces": [
"application/json"
],
"parameters": [
{
"required": true,
"schema": {
"$ref": "#/definitions/SessionCreationRequest"
},
"in": "body",
"name": "body"
}
],
"operationId": "createSession",
"security": [
{
"oauth2": []
}
],
"description": "Create a new session. Note that the session start time must be in the future, and the session end time must be after the session start time.",
"tags": [
"Session"
]
},
"get": {
"responses": {
"400": {
"description": "Invalid `order` or `state` or `deleted_participants` or `include_canceled` or `end_time` or `start_time` or `page_size` or `page`"
},
"200": {
"schema": {
"$ref": "#/definitions/SessionPage"
},
"description": ""
}
},
"produces": [
"application/json"
],
"parameters": [
{
"maximum": 9223372036854775807,
"minimum": -9223372036854775808,
"in": "query",
"name": "page",
"type": "integer",
"description": "The page number to return"
},
{
"maximum": 9223372036854775807,
"minimum": -9223372036854775808,
"in": "query",
"name": "page_size",
"type": "integer",
"description": "The number of sessions per page. Max 200. Default 200."
},
{
"format": "date-time",
"in": "query",
"name": "start_time",
"type": "string",
"description": "Includes sessions that start at or after start_time."
},
{
"format": "date-time",
"in": "query",
"name": "end_time",
"type": "string",
"description": "Include sessions that start upto and including end_time.."
},
{
"in": "query",
"name": "include_canceled",
"type": "boolean",
"description": "Includes sessions that have been canceled."
},
{
"in": "query",
"name": "deleted_participants",
"type": "boolean",
"description": "Also include participants that have been removed from the session."
},
{
"in": "query",
"name": "state",
"type": "string",
"description": "Return only sessions containing participants with the supplied state value."
},
{
"in": "query",
"name": "order",
"type": "string",
"description": "Order the results. forward returns oldest first by start time. backwards includes newest first by startime."
}
],
"operationId": "getSessionPage",
"security": [
{
"oauth2": []
}
],
"description": "Get a list of sessions. By default, the returned order is \npaginated with the first page containing the created sessions \nin chronological order (oldest created first). If you set the \n \"order\" parameter to \"reverse\", the newest created sessions \nwill be returned. You can filter sessions by start and end time, \nat which stage the returned result list is ordered by start time \nin chronological order (rather than by creation time). The \"order\" \nparameter allows you to reverse this order to retrieve sessions by \nstart time with the newest start time first.",
"tags": [
"Session"
]
}
},
"/sessions/{session_id}/participants": {
"post": {
"consumes": [
"application/json"
],
"responses": {
"404": {
"description": "`session_id` not found"
},
"400": {
"description": "Invalid `body`"
},
"200": {
"schema": {
"$ref": "#/definitions/Participant"
},
"description": ""
}
},
"produces": [
"application/json"
],
"parameters": [
{
"required": true,
"in": "path",
"name": "session_id",
"type": "string",
"description": "The session id of the session that the operation applies to."
},
{
"required": true,
"schema": {
"$ref": "#/definitions/ParticipantCreationRequest"
},
"in": "body",
"name": "body"
}
],
"operationId": "addSessionParticipant",
"security": [
{
"oauth2": []
}
],
"description": "It is sometimes useful to add a participant to a session after the session has been created. It is possible to add a participant to a session that has already start, but not to a session that has already finished.",
"tags": [
"Session"
]
},
"get": {
"responses": {
"404": {
"description": "`session_id` not found"
},
"400": {
"description": "Invalid `deleted_participants`"
},
"200": {
"schema": {
"$ref": "#/definitions/ParticipantPage"
},
"description": ""
}
},
"produces": [
"application/json"
],
"parameters": [
{
"required": true,
"in": "path",
"name": "session_id",
"type": "string",
"description": "The session id of the session that the operation applies to."
},
{
"in": "query",
"name": "deleted_participants",
"type": "boolean",
"description": "Also include participants that have been removed from the session."
}
],
"operationId": "getSessionParticipants",
"security": [
{
"oauth2": []
}
],
"description": "Get the list of participants for a session.",
"tags": [
"Session"
]
}
}
}
}