-
Notifications
You must be signed in to change notification settings - Fork 1
/
sharepoint-openapi.yaml
466 lines (431 loc) · 12 KB
/
sharepoint-openapi.yaml
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
openapi: 3.0.3
info:
title: SharePoint OpenAPI
description: OpenAPI 3.0.3 Specification for the SharePoint APIs
version: 1.0.0
contact:
name: Mitchell Quinn
email: [email protected]
servers:
- url: https://{siteUrl}/_api/web
description: The end point for site access.
variables:
site_url:
default: SP_SITE_URL
- url: https://{siteUrl/_api/site
description: The end point for specific site collection access.
variables:
siteUrl:
default: SP_SITE_URL
paths:
# Authorization
/tokens/OAuth/2:
post:
summary: Generate an OAuth2 Bearer Token
servers:
- url: https://accounts.accesscontrol.windows.net/{realm}
description: The default microsoft authorization server.
variables:
realm:
default: SP_SITE_REALM
tags:
- Authorization
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/AuthorizationRequest'
responses:
'200':
$ref: '#/components/responses/AuthorizationSuccessResponse'
'400':
$ref: '#/components/responses/BadRequestResponse'
# Folders
/GetFolderByServerRelativePath(decodedurl='{folderPath}'):
get:
summary: Get a folder by path.
parameters:
- in: path
name: folderPath
schema:
type: string
required: true
description: The server relative path to folder to get folders (urlencoded).
example: Shared%20Documents
tags:
- Folders
responses:
'200':
$ref: '#/components/responses/GetFolderByPathResponse'
/GetFolderByServerRelativePath(decodedurl='{folderPath}')/Folders:
get:
summary: Get a folders by path.
parameters:
- in: path
name: folderPath
schema:
type: string
required: true
description: The server relative path to folder to get folders.
example: Shared%20Documents
tags:
- Folders
responses:
'200':
$ref: '#/components/responses/GetFoldersByPathResponse'
# Files
/GetFileByServerRelativeUrl(decodedurl='{filePath}')/$value:
get:
summary: Get a file by path.
parameters:
- in: path
name: filePath
schema:
type: string
required: true
description: The server relative path to file. This value is given in the GetFiles request.
example: /sites/FileSharingSite/Shared Documents/fileName.docx'
tags:
- Files
responses:
'200':
description: Successful download file
content:
"*/*":
schema:
type: string
format: binary
/GetFolderByServerRelativePath(decodedurl='{folderPath}')/Files:
get:
summary: Get a files by path.
parameters:
- in: path
name: folderPath
schema:
type: string
required: true
description: The server relative path to folder to get files.
example: Shared%20Documents
tags:
- Files
responses:
'200':
$ref: '#/components/responses/GetFilesByPathResponse'
components:
responses:
AuthorizationSuccessResponse:
description: Successful authorization response.
content:
application/json:
schema:
$ref: '#/components/schemas/AuthorizationSuccess'
GetFolderByPathResponse:
description: Successfully retrieve folders by path response.
content:
application/json:
schema:
$ref: '#/components/schemas/SPFolder'
GetFoldersByPathResponse:
description: Successfully retreive folders by path response.
content:
application/json:
schema:
type: object
properties:
value:
type: array
items:
$ref: '#/components/schemas/SPFolder'
GetFileByPathResponse:
description: Successfully retrieve a file by path response.
content:
application/json:
schema:
$ref: '#/components/schemas/SPFile'
GetFilesByPathResponse:
description: Successfully retreive files by path response.
content:
application/json:
schema:
type: object
properties:
value:
type: array
items:
$ref: '#/components/schemas/SPFile'
# OK:
# description: The specified resource was not found
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Error'
BadRequestResponse:
description: Indicates that the server cannot or will not process the request due to something that is perceived to be a client error.
content:
application/json:
schema:
$ref: '#/components/schemas/BadRequestError'
# Unauthorized:
# description: Need to add
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Error'
# Forbidden:
# description: Need to add
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Error'
# NotFound:
# description: Need to add
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Error'
# MethodNotAllowed:
# description: Need to add
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Error'
# NotAcceptable:
# description: Need to add
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Error'
# Conflict:
# description: Need to add
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Error'
# UnsupportedMediaType:
# description: Need to add
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Error'
# ServerError:
# description: Need to add
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Error'
# ProviderServerError:
# description: Need to add
# content:
# application/json:
# schema:
# $ref: '#/components/schemas/Error'
schemas:
AuthorizationRequest:
type: object
properties:
grant_type:
type: string
enum:
- client_credentials
client_id:
type: string
description: The client_id from your SharePoint Site APP and the realm from your SharePoint Site. Should be in format of client_id@realm
client_secret:
type: string
description: The client_secret from your SharePoint Site App.
resource:
type: string
description: Should be in format of principal/targetHost@realm
required:
- grant_type
- client_id
- client_secret
- resource
AuthorizationSuccess:
type: object
properties:
token_type:
type: string
enum:
- Bearer
expires_in:
type: string
example: 86399
not_before:
type: string
example: 1626789375
expires_on:
type: string
example: 1626789375
resource:
type: string
example: 00000003-0000-0ff1-ce00-000000000000/tenant.sharepoint.com@bb48c.. ..88dcf
description: Format is principal/tenant@realm
access_token:
type: string
example: eyJ0eXAiO.. ..i10NX05w
description: Standard OAuth2 Access Token
required:
- token_type
- expires_in
- not_before
- expires_on
- resource
- access_token
SPFile:
type: object
properties:
CheckInComment:
type: string
CheckOutType:
type: integer
ContentTag:
type: string
CustomizedPageStatus:
type: integer
ETag:
type: string
example: "\"{867E9A8F-EC3B-4996-A535-0774BA9A204E},4\""
Exists:
type: boolean
IrmEnabled:
type: boolean
Length:
type: string
example: "17398"
Level:
type: integer
LinkingUri:
type: string
LinkingUrl:
type: string
MajorVersion:
type: integer
MinorVersion:
type: integer
Name:
type: string
example: FileName
ServerRelativeUrl:
type: string
example: /folder/file.txt
TimeCreated:
type: string
format: datetime
example: "2021-07-08T19:57:33Z"
TimeLastModified:
type: string
format: datetime
example: "2021-07-08T19:57:33Z"
Title:
type: string
UIVersion:
type: integer
IUVersionLabel:
type: string
example: "1.0"
UniqueId:
type: string
format: uuid
example: 3b596822-60f6-4c0a-813b-ad3ec3060ed0
required:
- CheckInComment
- CheckOutType
- ContentTag
- CustomizedPageStatus
- ETag
- Exists
- IrmEnabled
- Length
- Level
- LinkingUri
- LinkingUrl
- MajorVersion
- MinorVersion
- Name
- ServerRelativeUrl
- TimeCreated
- TimeLastModified
- Title
- UIVersion
- IUVersionLabel
- UniqueId
SPFolder:
type: object
properties:
Exists:
type: boolean
IsWOPIEnabled:
type: boolean
ItemCount:
type: integer
Name:
type: string
example: Folder Name
ProgID:
type: string
format: uuid
nullable: true
ServerRelativeUrl:
type: string
example: path/to/folder
TimeCreated:
type: string
format: datatime
example: "2021-07-08T19:57:33Z"
TimeLastModified:
type: string
format: datatime
example: "2021-07-08T19:57:40Z"
UniqueId:
type: string
format: uuid
example: 3b596822-60f6-4c0a-813b-ad3ec3060ed0
WelcomePage:
type: string
example: ""
required:
- Exists
- IsWOPIEnabled
- ItemCount
- Name
- ProgID
- ServerRelativeUrl
- TimeCreated
- TimeLastModified
- UniqueId
- WelcomePage
BadRequestError:
type: object
properties:
error:
type: string
example: unsupported_grant_type
error_description:
type: string
description: A short description of the details for the error.
error_codes:
type: array
items:
type: integer
example: 70003
timestamp:
type: string
format: datetime
example: 2021-07-20 14:48:05Z
trace_id:
type: string
format: uuid
example: 5491e14c-785a-4a7b-a7c9-e7fa12c02202
correlation_id:
type: string
format: uuid
example: 5491e14c-785a-4a7b-a7c9-e7fa12c02202
required:
- error
- error_description
- error_codes
- timestamp
- trace_id
- correlation_id