-
Notifications
You must be signed in to change notification settings - Fork 7
/
apiary.apib
428 lines (304 loc) · 10.8 KB
/
apiary.apib
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
FORMAT: 1A
HOST: https://stackoverflow-paul.herokuapp.com/api/v1
# Stackoverflow-lite
Stackoverflow lite is a simple API allowing users to view post questions, answers and vote for them. You can view this documentation over at [Apiary](https://stackoverflowlite2.docs.apiary.io).
## Sign up Collection [/auth/signup]
### User can sign up [POST]
You may create your own account using this action.
It takes a JSON object containing a user email, password and username as profile and authorization details.
+ username (required, string) - User name
+ email (required, string) - A valid user email
+ password (required, string) - Strong login password
+ Request (application/json)
{
"email": "[email protected]",
"password": "sdsdfsdf9s0d9fs09sf",
"username": "sky"
}
+ Response 201 (application/json)
{
"auth_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE1Mzc3MDAwMTIsInN1YiI6bnVsbCwiaWF0IjoxNTM1MDIxNDgyfQ.Bu-tAvsHe1pzARSEwLm4RWIiaHW_LP1LBIvfiDoeowQ",
"id": 47,
"message": "Successfully registered.",
"status": "success"
}
+ Response 401 (application/json)
{
"errors": {
"user_exist": "User already exists. Please Log in."
},
"status": "fail"
}
## Login [/auth/login]
### User can Login [POST]
This action allows you to login and and get a JWT authorization token.
+ email: (required, string) - User email
+ password: (required, string) - User password
+ Request (application/json)
{
"email": "[email protected]",
"password": "sdsdfsdf9s0d9fs09sf",
"username": "sky"
}
+ Response 200 (application/json)
{
"auth_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE1Mzc2OTgxMDYsInN1YiI6MTQsImlhdCI6MTUzNTAxOTU3Nn0.zIy4KGCaIlHvBMbDmP0BCIHmrn43bN3O-PyiI1ZviY8",
"id": 14,
"message": "Successfully logged in.",
"status": "success"
}
+ Response 404 (application/json)
{
"message": "User does not exist.",
"status": "fail"
}
## Single user collection [/auth/user]
### Retrieve single user [GET]
This action allows you to retreive user details.
+ Response 201 (application/json)
{
"results": [
{
"created_at": "Sun, 19 Aug 2018 18:20:08 GMT",
"email": "[email protected]",
"username": "p8ul"
}
],
"status": "success"
}
+ Response 404 (application/json)
{
"results": "User not found",
"status": "fail"
}
+ Response 401 (application/json)
{
"errors": {
"email": "Invalid email. Please enter a valid email"
},
"status": "fail"
}
## Questions Collection [/questions/]
### User can list all questions [GET]
This action list all the questions in the database.
+ Response 200 (application/json)
### User can create a question [POST]
You may create your own question using this action.
It takes a JSON object containing a question title and body.
+ title (required, string) - The question title
+ body (required, string) - Question description body
+ Request (application/json)
{
"title": "What was your question title",
"body": "What was your question body What was your question body"
}
+ Response 201 (application/json)
{
"results": {
"body": "sdfsfffssd",
"created_at": "Thu, 23 Aug 2018 11:01:20 GMT",
"question_id": 218,
"title": "sdfsdfsf",
"user_id": 14
},
"status": "success"
}
+ Response 400 (application/json)
{
"message": "Bad request. Please try again.",
"status": "fail"
}
## Update question collection [/questions/1]
### User can update a question [PUT]
User can update a question using this action.
It takes a JSON object containing a question title and body.
+ title (required, string) - The question title
+ body (required, string) - Question description body
+ Request (application/json)
{"title": "new title", "body": "new body" }
+ Response 201 (application/json)
{
"results": {
"body": "this is the new body",
"question_id": "1",
"title": "New sdfsdftitle",
"user_id": "14"
},
"status": "success"
}
+ Response 400 (application/json)
{
"message": "Bad request. Please try again.",
"status": "fail"
}
## User questions collection [/users/questions]
### Logged in User can list his/her question [GET]
This action will list all the questions that belongs to the user who is currently logged in.
+ Response 200 (application/json)
{
"results": {
"question": [
{
"body": "sdfsfffssd",
"created_at": "Tue, 28 Aug 2018 08:37:35 GMT",
"question_id": 1,
"title": "sdfsdfsf"
}
]
},
"status": "success"
}
## Answers POST collections [/questions/{question_id}/answers]
### User can post an answer [POST]
This action will allow you to post an answer to the specified question
A Question object has the following attributes:
+ answer_body - Answer descriptive body
+ Parameters
+ question_id: 1 (required, number) - ID of the Question in form of an integer
+ Request (application/json)
{
"answer_body": "A good answer"
}
+ Response 201 (application/json)
{
"message": {
"accepted": false,
"answer_body": "A good answer",
"answer_id": 120,
"created_at": "Thu, 23 Aug 2018 11:20:50 GMT",
"question_id": 218,
"user_id": 14
},
"status": "success"
}
+ Response 400 (application/json)
{
"message": "Unknown question id. Try a different id.",
"status": "fail"
}
## Answer: List all answers [/questions/answers]
Answer object has the following attributes:
+ accepted - (bool)
+ created_at - An ISO8601 date when the answer was published.
+ downvotes: (int) Number of down votes
+ upvotes: (int) Number of up votes
+ user_id - (int).
+ question_id - (int) Id of the question answered
### User can list all answers [GET]
You may list all answers using this action.
+ Response 201 (application/json)
{
"results": [
{
"accepted": false,
"answer_body": "cool answer",
"answer_id": 52,
"created_at": "Wed, 22 Aug 2018 14:58:39 GMT",
"downvotes": 0,
"question_id": 94,
"upvotes": 0,
"user_id": 1
}
],
"status": "success"
}
## Answers GET collections [/questions/answers/{answer_id}]
### User can retrieve an answer [GET]
This action allows you to retreive a single answer details.
+ Parameters
+ answer_id: 1 (required, number) - ID of answer you to display
+ Response 201 (application/json)
{
"results": [
{
"accepted": false,
"answer_body": "answer body",
"answer_id": 57,
"created_at": "Wed, 22 Aug 2018 19:59:41 GMT",
"question_id": 103,
"user_id": 2
}
],
"status": "success"
}
+ Response 404 (application/json)
{
"results": "Answer not found",
"status": "fail"
}
## Votes collections [/questions/answers/vote/{answer_id}]
### User can Upvote/Downvote [POST]
A Vote object has the following attributes:
+ user_id: - Voters user id
+ created_at - An ISO8601 date when the question was published.
+ vote - Boolean: True to upvote / False to down vote
+ Parameters
+ answer_id: 1 (required, number) - ID of the answer in form of an integer
+ Request (application/json)
{
"vote": "true"
}
+ Response 201 (application/json)
{
"message": "Your vote was successful",
"status": "success"
}
## Answer PUT/DELETE collections [/questions/{question_id}/answers/{answer_id}]
### User can update answer [PUT]
This action will Update an answer.
+ answer_body: (required, string)
+ accepted (bool)
+ Parameters
+ answer_id: 1 (required, number) - ID of the answer in form of an integer
+ question_id: 1 (required, number)
+ Request (applicatino/json)
{
"answer_body": "i asdasda programming",
"accepted": "true"
}
+ Response 201 (application/json)
{
"message": "Update successful",
"status": "success"
}
+ Response 400 (application/json)
{
"message": "Please provide correct answer and question id",
"status": "fail"
}
### User can delete an answer [DELETE]
+ Parameters
+ answer_id: 1 (required, number) - ID of the answer in form of an integer
+ question_id: 1 (required, number) - ID of the answer in form of an integer
+ Response 200 (application/json)
{
"message": "Answer deleted successful",
"status": "success"
}
+ Response 400 (application/json)
{
"message": "Answer id does not exist",
"status": "fail"
}
## Comments collection [/questions/answers/comment/{answer_id}]
### User can comment on an answer [POST]
A Comment object has the following attributes:
+ user_id: - Commenting user id
+ created_at - An ISO8601 date when the question was published.
+ comment_body - String: Comment description
+ Parameters
+ answer_id: 1 (required, number) - ID of the answer in form of an integer
+ Request (application/json)
{
"comment_body": "comment goes here"
}
+ Response 201 (application/json)
{
"message": "Your comment was successful",
"status": "success"
}
+ Response 400 (application/json)
{
"message": "Some error occurred. Please try again.",
"status": "fail"
}