-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbiergit-api-specs.yaml
More file actions
294 lines (294 loc) · 7.01 KB
/
biergit-api-specs.yaml
File metadata and controls
294 lines (294 loc) · 7.01 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
openapi: 3.0.1
info:
title: biergit.ch api
version: 1.0.0
description: API for the biergit.ch backend
contact:
name: biergit
url: https://biergit.ch
email: api@biergit.ch
servers:
- url: https://biergit.ch/api/v1/
tags:
- name: groups
description: groups
- name: profiles
description: profiles
- name: expenses
description: expenses
security:
- OAuth2:
- read
paths:
/groups:
get:
tags:
- groups
operationId: get-groups
summary: Get all groups
description: |
get all groups.
security:
- OAuth2:
[]
responses:
"200":
description: Successful
content:
application/json:
schema:
$ref: "#/components/schemas/Groups"
"401":
$ref: "#/components/responses/UnauthorizedError"
"403":
$ref: "#/components/responses/ForbiddenError"
"/groups/{groupId}":
get:
operationId: get-group
tags:
- groups
summary: update group
security:
- OAuth2:
[]
description: |
Gets group by id
parameters:
- in: path
name: groupId
required: true
schema:
type: integer
description: Numeric ID of the group to get
responses:
"200":
description: Successful
content:
application/json:
schema:
$ref: "#/components/schemas/Groups"
delete:
tags:
- groups
operationId: delete-group
summary: delete group
security:
- OAuth2:
- write
parameters:
- in: path
name: groupId
required: true
schema:
type: integer
description: Numeric ID of the group to get
responses:
"200":
description: Successful
"401":
$ref: "#/components/responses/UnauthorizedError"
"403":
$ref: "#/components/responses/ForbiddenError"
"/groups/{groupId}/members":
post:
tags:
- groups
operationId: invite-user
summary: groups
description: |
Invite users to group, invitation emails are being sent out
security:
- OAuth2:
- write
parameters:
- in: path
required: true
name: groupId
schema:
type: integer
description: Numeric ID of the group to get
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/EmailModel"
responses:
"202":
description: pet response
content:
application/json:
schema:
$ref: '#/components/schemas/Groups'
get:
tags:
- groups
operationId: get-group-memers
summary: Get all members of a groups
description: |
Get all members of a groups
security:
- OAuth2:
- write
parameters:
- in: path
name: groupId
schema:
type: integer
required: true
description: Numeric ID of the user to get
responses:
"200":
description: Successful
content:
application/json:
schema:
$ref: "#/components/schemas/Members"
"/groups/{groupId}/verify/{verificationToken}":
get:
tags:
- groups
operationId: join-group
summary: Link to join a group
description: |
Join a group.
security:
[]
parameters:
- in: path
name: groupId
schema:
type: integer
required: true
description: Numeric ID of the user to get
- in: path
name: verificationToken
schema:
type: string
required: true
description: JWT generated by the backend
responses:
"200":
description: Successful
/profiles/me:
get:
tags:
- profiles
operationId: get-profile
summary: Get my profile data
description: |
Get my profile
security:
- OAuth2:
- read
responses:
"200":
description: Successful
content:
application/json:
schema:
$ref: "#/components/schemas/Profile"
/expenses:
post:
tags:
- expenses
operationId: create-expense
summary: expenses
description: |
Create new expense
security:
- OAuth2:
- write
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Expense'
responses:
"201":
description: Successful
components:
securitySchemes:
OAuth2:
type: oauth2
description: This API uses OAuth 2 with the implicit grant flow. [More
info](https://tools.ietf.org/html/rfc6749#section-1.3.2)
flows:
implicit:
authorizationUrl: https://biergit.eu.auth0.com/authorize
scopes:
read: Grants read access
write: Grants write access
admin: Grants access to admin operations
responses:
UnauthorizedError:
description: Access token is missing or invalid
ForbiddenError:
description: You don't have the permission to perform this action
schemas:
EmailModel:
type: object
properties:
email:
type: string
format: email
Groups:
allOf:
- $ref: "#/components/schemas/Group"
Group:
type: object
properties:
id:
type: string
example: d70eac2d-0b96-49e6-95cb-3e55574fa5bc
name:
type: string
example: Bier Gruppe
Members:
allOf:
- $ref: "#/components/schemas/Member"
Member:
type: object
properties:
firstname:
type: string
example: Member
lastname:
type: string
example: Dember
Profile:
type: object
properties:
id:
type: string
example: d70eac2d-0b96-49e6-95cb-3e55574fa5bc
name:
type: string
example: Frau Biergit
email:
type: string
format: email
example: frau.biergit@biergit.ch
Expenses:
allOf:
- $ref: "#/components/schemas/Expense"
Expense:
type: object
properties:
context:
type: string
example: d70eac2d-0b96-49e6-95cb-3e55574fa5bc
description: Can be used as user or group id
from:
type: string
example: d70eac2d-0b96-49e6-95cb-3e55574fa5bc
description: Unique userid
to:
type: array
description: a list of userids
items:
type: string
quantity:
type: integer
example: 3