-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathswagger.yaml
564 lines (564 loc) · 13 KB
/
swagger.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
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
swagger: '2.0'
info:
version: '1.0.0'
title: ViMbAdmin-API
description: This is a quick and dirty Lumen base API for the ViMbAdmin database
license:
name: MIT
url: http://opensource.org/licenses/MIT
host: vimbadmin-api.dev
schemes:
- https
consumes:
- application/json
produces:
- application/json
securityDefinitions:
oAuthSecurity:
type: oauth2
tokenUrl: https://vimbadmin-api.dev/oauth/token
flow: application
scopes:
default: Default
paths:
/token:
post:
description: Request Auth token
operationId: requestToken
consumes:
- application/x-www-form-urlencoded
parameters:
- name: client_id
in: formData
description: oAuth Client ID
required: true
type: string
- name: client_type
in: formData
description: oAuth Client Secret
required: true
type: string
- name: grant_type
in: formData
description: oAuth Grant Type
required: true
type: string
enum: ['client_credentials']
responses:
'200':
description: Bearer Token
schema:
$ref: '#/definitions/token'
default:
$ref: '#/responses/default'
/domains:
get:
description: Returns all domains
operationId: findDomains
produces:
- application/json
security:
- oAuthSecurity:
- default
parameters:
- $ref: '#/parameters/q'
- $ref: '#/parameters/include'
responses:
'200':
description: domain response
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/definitions/domain'
included:
$ref: "#/definitions/included"
links:
$ref: '#/definitions/link'
'401':
$ref: '#/responses/401'
default:
$ref: '#/responses/default'
/domains/{id}:
get:
description: Return single domains
operationId: getDomain
produces:
- application/json
security:
- oAuthSecurity:
- default
parameters:
- $ref: '#/parameters/id'
- $ref: '#/parameters/include'
responses:
'200':
description: domain response
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/definitions/domain'
included:
$ref: "#/definitions/included"
links:
$ref: '#/definitions/link'
'401':
$ref: '#/responses/401'
'404':
$ref: '#/responses/404'
default:
$ref: '#/responses/default'
/{domainName}/mailboxes:
get:
description: Returns all mailboxes for given domain
operationId: findMailboxesForDoman
produces:
- application/json
security:
- oAuthSecurity:
- default
parameters:
- $ref: '#/parameters/domainName'
responses:
'200':
description: domain mailboxes response
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/definitions/mailbox'
included:
$ref: "#/definitions/included"
links:
$ref: '#/definitions/link'
'401':
$ref: '#/responses/401'
default:
$ref: '#/responses/default'
/{domainName}/mailboxes/{id}:
get:
description: Return a mailbox for given domain
operationId: getMailboxForDomain
produces:
- application/json
security:
- oAuthSecurity:
- default
parameters:
- $ref: '#/parameters/domainName'
- $ref: '#/parameters/id'
responses:
'200':
description: domain mailboxes response
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/definitions/mailbox'
included:
$ref: "#/definitions/included"
links:
$ref: '#/definitions/link'
'401':
$ref: '#/responses/401'
'404':
$ref: '#/responses/404'
default:
$ref: '#/responses/default'
patch:
description: Update a mailbox
operationId: updateMailbox
produces:
- application/json
security:
- oAuthSecurity:
- default
parameters:
- $ref: '#/parameters/domainName'
- $ref: '#/parameters/id'
- name: body
in: body
required: true
schema:
$ref: '#/definitions/mailbox'
responses:
'200':
description: mailbox updated response
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/definitions/mailbox'
included:
$ref: "#/definitions/included"
links:
$ref: '#/definitions/link'
'401':
$ref: '#/responses/401'
'409':
$ref: '#/responses/409'
default:
$ref: '#/responses/default'
/{domainName}/aliases:
get:
description: Returns all aliases for given domain
operationId: findAliasesForDomain
produces:
- application/json
security:
- oAuthSecurity:
- default
parameters:
- $ref: '#/parameters/domainName'
responses:
'200':
description: domain alises response
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/definitions/alias'
included:
$ref: "#/definitions/included"
links:
$ref: '#/definitions/link'
'401':
$ref: '#/responses/401'
default:
$ref: '#/responses/default'
post:
description: Create a new alias
operationId: createAlias
produces:
- application/json
security:
- oAuthSecurity:
- default
parameters:
- $ref: '#/parameters/domainName'
- name: body
in: body
required: true
schema:
$ref: '#/definitions/mailbox'
responses:
'201':
description: alias created response
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/definitions/alias'
included:
$ref: "#/definitions/included"
links:
$ref: '#/definitions/link'
'401':
$ref: '#/responses/401'
'409':
$ref: '#/responses/409'
default:
$ref: '#/responses/default'
/{domainName}/aliases/{id}:
get:
description: Return a alias for given domain
operationId: getAliasForDomain
produces:
- application/json
security:
- oAuthSecurity:
- default
parameters:
- $ref: '#/parameters/domainName'
- $ref: '#/parameters/id'
responses:
'200':
description: domain alias response
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/definitions/alias'
included:
$ref: "#/definitions/included"
links:
$ref: '#/definitions/link'
'401':
$ref: '#/responses/401'
'404':
$ref: '#/responses/404'
default:
$ref: '#/responses/default'
patch:
description: Update a alias
operationId: updateAlias
produces:
- application/json
security:
- oAuthSecurity:
- default
parameters:
- $ref: '#/parameters/domainName'
- $ref: '#/parameters/id'
- name: body
in: body
required: true
schema:
$ref: '#/definitions/mailbox'
responses:
'200':
description: aliase updated response
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/definitions/alias'
included:
$ref: "#/definitions/included"
links:
$ref: '#/definitions/link'
'401':
$ref: '#/responses/401'
'409':
$ref: '#/responses/409'
default:
$ref: '#/responses/default'
parameters:
domainName:
name: domainName
in: path
description: Domain Name
required: true
type: string
id:
name: id
in: path
description: id
required: true
type: string
q:
name: q
in: query
description: search query
required: false
type: string
include:
name: include
in: query
description: additional relations to include in the response
required: false
type: array
items:
enum: ['mailboxes', 'aliases']
uniqueItems: true
collectionFormat: csv
responses:
401:
description: Unauthorized
schema:
type: object
required:
- errors
properties:
errors:
$ref: '#/definitions/error'
links:
$ref: '#/definitions/link'
404:
description: Not Found
schema:
type: object
required:
- errors
properties:
errors:
$ref: '#/definitions/error'
links:
$ref: '#/definitions/link'
409:
description: Conflict
schema:
type: object
required:
- errors
properties:
errors:
$ref: '#/definitions/error'
links:
$ref: '#/definitions/link'
default:
description: unexpected error
schema:
type: object
required:
- errors
properties:
errors:
$ref: '#/definitions/error'
links:
$ref: '#/definitions/link'
definitions:
domain:
type: object
required:
- id
- type
properties:
id:
type: integer
format: int64
type:
type: string
attributes:
type: object
properties:
domain:
type: string
links:
$ref: '#/definitions/link'
relationships:
$ref: "#/definitions/relationships"
mailbox:
type: object
required:
- id
- type
properties:
id:
type: integer
format: int64
type:
type: string
attributes:
type: object
properties:
username:
type: string
name:
type: string
links:
$ref: '#/definitions/link'
relationships:
$ref: "#/definitions/relationships"
alias:
type: object
required:
- id
- type
properties:
id:
type: integer
format: int64
type:
type: string
attributes:
type: object
properties:
address:
type: string
goto:
type: array
items:
type: string
links:
$ref: '#/definitions/link'
relationships:
$ref: "#/definitions/relationships"
relationships:
type: object
properties:
domains:
$ref: "#/definitions/relation"
aliases:
$ref: "#/definitions/relation"
mailboxes:
$ref: "#/definitions/relation"
relation:
type: object
properties:
links:
$ref: "#/definitions/link"
data:
type: array
items:
type: object
required:
- id
- type
properties:
id:
type: integer
format: int64
type:
type: string
included:
type: array
items:
type: object
required:
- id
- type
properties:
id:
type: integer
format: int64
type:
type: string
attributes:
type: object
links:
$ref: '#/definitions/link'
link:
type: object
properties:
self:
type: string
related:
type: string
error:
type: object
required:
- status
- title
- detail
properties:
status:
type: integer
title:
type: string
detail:
type: string
meta:
type: object
token:
type: object
required:
- token_type
- expires_in
- access_token
properties:
token_type:
type: string
expires_in:
type: integer
access_token:
type: string