-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.yaml
349 lines (349 loc) · 7.79 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
swagger: '2.0'
info:
version: '1.0'
title: Politico API DOcs
description: 'Politico is an online voting app which enables citizens give their mandate to politicians running for different government offices while building trust in the process through transparency. The Online fulcrum for politicians, voters and electoral body.'
contact:
email: "[email protected]"
license:
name: "MIT License"
url: "http://opensource.org/licenses/MIT"
host: ngpolitico.herokuapp.com
basePath: /api/v1
schemes:
- https
consumes:
- application/json
produces:
- application/json
paths:
/parties/:
post:
description: 'TODO: Add Description'
summary: Create Political parties
tags:
- Parties
operationId: PartiesPost
produces:
- application/json
consumes:
- application/x-www-form-urlencoded
parameters:
- name: Content-Type
in: header
required: true
type: string
description: ''
- name: token
in: header
required: true
type: string
description: ''
- name: partyName
in: formData
required: true
type: string
description: ''
- name: partyDetail
in: formData
required: true
type: string
description: ''
- name: hqAddress
in: formData
required: true
type: string
description: ''
- name: logoUrl
in: formData
required: true
type: string
description: ''
responses:
200:
description: ''
headers: {}
get:
description: 'TODO: Add Description'
summary: Get All Parties
tags:
- Parties
operationId: PartiesGet
produces:
- application/json
parameters: []
responses:
200:
description: ''
headers: {}
/parties/1/name:
patch:
description: 'TODO: Add Description'
summary: Update political parties name
tags:
- Parties
operationId: Parties1NamePatch
produces:
- application/json
consumes:
- application/x-www-form-urlencoded
parameters:
- name: token
in: header
required: true
type: string
description: ''
- name: Content-Type
in: header
required: true
type: string
description: ''
- name: partyName
in: formData
required: true
type: string
description: ''
- name: partyDetail
in: formData
required: true
type: string
description: ''
responses:
200:
description: ''
headers: {}
/parties/1:
get:
description: 'TODO: Add Description'
summary: Get Selected parties base on id
tags:
- Parties
operationId: Parties1Get
produces:
- application/json
parameters: []
responses:
200:
description: ''
headers: {}
delete:
description: 'TODO: Add Description'
summary: Delete parties base on id
tags:
- Parties
operationId: Parties1Delete
produces:
- application/json
parameters: []
responses:
200:
description: ''
headers: {}
/auth/signup:
post:
description: Users sign up to have access into the politico app
summary: Sign up
tags:
- Users
operationId: AuthSignupPost
produces:
- application/json
consumes:
- application/x-www-form-urlencoded
parameters:
- name: Content-Type
in: header
required: true
type: string
description: ''
- name: firstname
in: formData
required: true
type: string
description: ''
- name: lastname
in: formData
required: true
type: string
description: ''
- name: email
in: formData
required: true
type: string
description: ''
- name: phonenumber
in: formData
required: true
type: string
description: ''
- name: password
in: formData
required: true
type: string
description: ''
- name: passporturl
in: formData
required: true
type: string
description: ''
responses:
200:
description: ''
headers: {}
/auth/login:
post:
description: Users Login if the account has been created before
summary: Login users
tags:
- Users
operationId: AuthLoginPost
produces:
- application/json
consumes:
- application/x-www-form-urlencoded
parameters:
- name: Content-Type
in: header
required: true
type: string
description: ''
- name: email
in: formData
required: true
type: string
description: ''
- name: password
in: formData
required: true
type: string
description: ''
responses:
200:
description: ''
headers: {}
/auth/users:
get:
description: Admin permission required
summary: View Authenticated users
tags:
- Users
operationId: AuthUsersGet
produces:
- application/json
parameters: []
responses:
200:
description: ''
headers: {}
/votes:
post:
description: 'TODO: Add Description'
summary: Users Voting
tags:
- Votes
operationId: VotesPost
produces:
- application/json
parameters: []
responses:
200:
description: ''
headers: {}
/office/1/result:
get:
description: 'TODO: Add Description'
summary: Get results of votes base on office ID
tags:
- Votes
operationId: Office1ResultGet
produces:
- application/json
parameters: []
responses:
200:
description: ''
headers: {}
/offices/:
post:
description: 'TODO: Add Description'
summary: Create New Office
tags:
- Offices
operationId: OfficesPost
produces:
- application/json
parameters: []
responses:
200:
description: ''
headers: {}
get:
description: 'TODO: Add Description'
summary: Get All Offices
tags:
- Offices
operationId: OfficesGet
produces:
- application/json
parameters: []
responses:
200:
description: ''
headers: {}
/offices/1:
get:
description: This is base on office ID
summary: Get Specific Office
tags:
- Offices
operationId: Offices1Get
produces:
- application/json
parameters: []
responses:
200:
description: ''
headers: {}
/office/1/register:
post:
description: 'TODO: Add Description'
summary: Create candidate for an Office
tags:
- Offices
operationId: Office1RegisterPost
produces:
- application/json
parameters: []
responses:
200:
description: ''
headers: {}
/office/1/candidate:
get:
description: 'TODO: Add Description'
summary: Get candidate running for an office
tags:
- Offices
operationId: Office1CandidateGet
produces:
- application/json
parameters:
- name: Content-Type
in: header
required: true
type: string
description: ''
- name: token
in: header
required: true
type: string
description: ''
responses:
200:
description: ''
headers: {}
tags:
- name: Parties
- name: Users
- name: Votes
- name: Offices