forked from instructure/pandarus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conferences.json
189 lines (187 loc) · 5.74 KB
/
conferences.json
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
{
"apiVersion": "1.0",
"swaggerVersion": "1.2",
"basePath": "https://canvas.instructure.com/api",
"resourcePath": "/conferences",
"produces": [
"application/json"
],
"apis": [
{
"path": "/v1/courses/{course_id}/conferences",
"description": "Retrieve the paginated list of conferences for this context\n\nThis API returns a JSON object containing the list of conferences,\nthe key for the list of conferences is \"conferences\"",
"operations": [
{
"method": "GET",
"summary": "List conferences",
"notes": "Retrieve the paginated list of conferences for this context\n\nThis API returns a JSON object containing the list of conferences,\nthe key for the list of conferences is \"conferences\"",
"nickname": "list_conferences_courses",
"parameters": [
{
"paramType": "path",
"name": "course_id",
"description": "ID",
"type": "string",
"format": null,
"required": true
}
],
"type": "array",
"items": {
"$ref": "Conference"
}
}
]
},
{
"path": "/v1/groups/{group_id}/conferences",
"description": "Retrieve the paginated list of conferences for this context\n\nThis API returns a JSON object containing the list of conferences,\nthe key for the list of conferences is \"conferences\"",
"operations": [
{
"method": "GET",
"summary": "List conferences",
"notes": "Retrieve the paginated list of conferences for this context\n\nThis API returns a JSON object containing the list of conferences,\nthe key for the list of conferences is \"conferences\"",
"nickname": "list_conferences_groups",
"parameters": [
{
"paramType": "path",
"name": "group_id",
"description": "ID",
"type": "string",
"format": null,
"required": true
}
],
"type": "array",
"items": {
"$ref": "Conference"
}
}
]
}
],
"models": {
"ConferenceRecording": {
"id": "ConferenceRecording",
"description": "",
"required": [
],
"properties": {
"duration_minutes": {
"example": 0,
"type": "integer"
},
"title": {
"example": "course2: Test conference 3 [170]_0",
"type": "string"
},
"updated_at": {
"example": "2013-12-12T16:09:33.903-07:00",
"type": "datetime"
},
"created_at": {
"example": "2013-12-12T16:09:09.960-07:00",
"type": "datetime"
},
"playback_url": {
"example": "http://example.com/recording_url",
"type": "string"
}
}
},
"Conference": {
"id": "Conference",
"description": "",
"required": [
],
"properties": {
"id": {
"description": "The id of the conference",
"example": 170,
"type": "integer"
},
"conference_type": {
"description": "The type of conference",
"example": "AdobeConnect",
"type": "string"
},
"conference_key": {
"description": "The 3rd party's ID for the conference",
"example": "abcdjoelisgreatxyz",
"type": "string"
},
"description": {
"description": "The description for the conference",
"example": "Conference Description",
"type": "string"
},
"duration": {
"description": "The expected duration the conference is supposed to last",
"example": 60,
"type": "integer"
},
"ended_at": {
"description": "The date that the conference ended at, null if it hasn't ended",
"example": "2013-12-13T17:23:26Z",
"type": "datetime"
},
"started_at": {
"description": "The date the conference started at, null if it hasn't started",
"example": "2013-12-12T23:02:17Z",
"type": "datetime"
},
"title": {
"description": "The title of the conference",
"example": "Test conference",
"type": "string"
},
"users": {
"description": "Array of user ids that are participants in the conference",
"example": [
1,
7,
8,
9,
10
],
"type": "array",
"items": {
"type": "integer"
}
},
"has_advanced_settings": {
"description": "True if the conference type has advanced settings.",
"example": false,
"type": "boolean"
},
"long_running": {
"description": "If true the conference is long running and has no expected end time",
"example": false,
"type": "boolean"
},
"user_settings": {
"description": "A collection of settings specific to the conference type",
"example": {
"record": true
},
"type": "object"
},
"recordings": {
"description": "A List of recordings for the conference",
"type": "array",
"items": {
"$ref": "ConferenceRecording"
}
},
"url": {
"description": "URL for the conference, may be null if the conference type doesn't set it",
"type": "string"
},
"join_url": {
"description": "URL to join the conference, may be null if the conference type doesn't set it",
"type": "string"
}
}
}
}
}