-
Notifications
You must be signed in to change notification settings - Fork 0
/
profil.yaml
126 lines (118 loc) · 3.44 KB
/
profil.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
swagger: "2.0"
info:
title: Novaxium - Profil
version: "1.0.0"
host: 127.0.0.1:8080
basePath: /api
schemes: [ http, https ]
consumes: [ application/json ]
produces: [ application/json ]
paths:
/profil:
get:
security:
- bearerAuth: []
operationId: lister
summary: Liste des profils
responses:
"200":
description: Succés
schema:
type: array
items:
$ref: 'https://raw.githubusercontent.com/dajay/swagger-doc/master/commons.yaml#/definitions/Profil'
"400":
description: Credentials invalides
"404":
description: Organisation ou utilisateur introuvable
post:
security:
- bearerAuth: []
operationId: creer
summary: Création d'un profil
parameters:
- in: body
name: profil
required: true
schema:
$ref: 'https://raw.githubusercontent.com/dajay/swagger-doc/master/commons.yaml#/definitions/Profil'
responses:
"200":
description: Succés
schema:
$ref: 'https://raw.githubusercontent.com/dajay/swagger-doc/master/commons.yaml#/definitions/Profil'
"401":
description: Credentials invalides
"403":
description: Vous ne disposez pas des droits nécessaires
"409":
description: Un profil existe déjà avec le même code
put:
security:
- bearerAuth: []
operationId: modifier
summary: Modifier un profil
parameters:
- in: body
name: profil
required: true
schema:
$ref: 'https://raw.githubusercontent.com/dajay/swagger-doc/master/commons.yaml#/definitions/Profil'
responses:
"200":
description: Succés
schema:
$ref: 'https://raw.githubusercontent.com/dajay/swagger-doc/master/commons.yaml#/definitions/Profil'
"401":
description: Credentials invalides
"403":
description: Vous ne disposez pas des droits nécessaires
"404":
description: Aucun profil pour le code
"409":
description: Un profil existe déjà avec le même code
/profil/{uuid}:
get:
security:
- bearerAuth: []
operationId: consulter
summary: Consulter un profil
parameters:
- in: path
name: uuid
format: uuid
type: string
required: true
responses:
"200":
description: Succés
schema:
$ref: 'https://raw.githubusercontent.com/dajay/swagger-doc/master/commons.yaml#/definitions/Profil'
"401":
description: Credentials invalides
"403":
description: Vous ne disposez pas des droits nécessaires
"404":
description: Aucun profil pour le code
delete:
security:
- bearerAuth: []
operationId: supprimer
summary: Supprimer un profil sans rôles
parameters:
- in: path
name: uuid
required: true
type: string
format: uuid
responses:
"200":
description: Succés
"400":
description: Un ou plusieurs rôles utilisent ce profil
"401":
description: Credentials invalides
"403":
description: Vous ne disposez pas des droits nécessaires
"404":
description: Aucun profil pour le code