-
Notifications
You must be signed in to change notification settings - Fork 0
/
apiary.apib
283 lines (182 loc) · 6.18 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
FORMAT: 3A
HOST: http://epic-mail-2019.herokuapp.com/api/v1/
# EPIC MAIL
This is a web application that allows messages to be exchanged over the internet
# Allowed HTTPs requests:
* POST : Update resource
* GET : Get a resource or list of resources
* DELETE : To delete resource
# Description Of Usual Server Responses:
* 200 ``OK`` - the request was successful (some API calls may return 201 instead).
* 201 ``created`` - the request was successful and a resource was created.
* 404 ``Not found`` - resource was not found.
# Code Sample
```
{
status: Server Responses,
data: [array] or {objects}
}
```
## HOME [/]
### Homepage [GET]
+ Response 200 (application/json)
{
"message": "Welcome to the api"
}
## User [/auth/]
### Create a new User [POST/signup]
You should create an account to use this service with your credentials.
+ Request (application/json)
{
"firstName": "",
"lastName": "",
"email": ""
"password": ""
}
+ Response 404 (application/json)
{
"status": 404,
"error": "empty Input fields"
}
+ Request (application/json)
{
"firstName": "Favourite programming language?",
"lastName": "Ipsum",
"email": "amajag@hshsh.com"
"password": "X-X-X-X"
}
+ Response 201 (application/json)
+ Headers
Location: /auth/signup
+ Body
{
"status": 201,
"token": "453hegu3yeuaysuyewuuywuuw2u734hudhdvvchczgzhjwu7837287gdg"
}
### Login a User [POST/auth/login]
+ Request (application/json)
+ Body
{
"email":" <invalid-email> or <non-existent user>",
"password": "<incorrect-password> or <empty-password-field>"
}
+ Response 404 (application/json)
+ Body
{
"error": 404
"error": "empty input fields or user does not exist"
}
+ Request (application/json)
+ Body
{
"email":"somegoodemail@email.com"
"password": "correctpasswprd"
}
+ Response 200 (application/json)
+ Body
{
"status": 200
"token": "dhbcsbvyuebyu3444534jhbabc3982"
]
}
## Messages [/messages]
### Get All Received Messages In Inbox[GET]
User should be able to retrieve all messages received
+ Response 200 (application/json)
+ Headers
Location: /messages
+ Body
{
"status": 200
"data":[
{
"id ": Integer,
"createdOn": DateTime,
"subject": String,
"message": String,
"senderId": Integer,
"parentMessageId":String,
"status": String //unread or read
},
]
}
### Get All Received Unread Messages [GET/messages/unread]
User should be able to retrieve all unread messages
+ Response 200 (application/json)
+ Body
{
"status": 200
"data":[
{
"id ": Integer,
"createdOn": DateTime,
"subject": String,
"message": String,
"senderId": Integer,
"parentMessageId":Integer,
"status": String // read
},
]
}
### Get a specific mail record [GET/messages/:id]
User should be able to fetch a specific mail record
+ Request (application/json)
+ Headers
Location: /messages/<invalid-id>
+ Response 404 (application/json)
+ Body
{
"status": 404,
"error": "invalid Request"
}
+ Request (application/json)
+ Headers
Location: /messages/<valid-id>
+ Response 200 (application/json)
+ Body
{
"status": 200,
"data": {
"id": Integer,
"createOn": DateTime,
"subject": String,
"message": String,
"receiverId": Integer,
"parentMessageId": Integer,
"status": String // sent or read or unread
}
}
### Get all sent messages [GET/messages/sent]
+ Response 200 (application/json)
+ Body
{
"status": 200,
"data": [ {
"id": Integer,
"createOn": DateTime,
"subject": String,
"message": String,
"receiverId": Integer,
"parentMessageId": Integer,
"status": String // sent
} ...
]
### Delete a specific message [DELETE/messages/:id]
+ Request (application/json)
+ Headers
Location: /messages/<invalid-id>
+ Response 404 (application/json)
+ Body
{
"status": 404,
"error": "invalid ID"
}
+ Request (application/json)
+ Headers
Location: /messages/<valid-id>
+ Response 200 (application/json)
+ Body
{
"status": 200,
"message": "message deleted"
}