-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocs.apib
More file actions
executable file
·587 lines (466 loc) · 19 KB
/
docs.apib
File metadata and controls
executable file
·587 lines (466 loc) · 19 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
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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
FORMAT: 1A
# LinkedList
This is the RESTful API backend to the [LinkedList project](https://github.com/rithmschool/LinkedList) (a spin-off of LinkedIn / AngelList)
---
## Resource Structure
### Collections
The API provides access to the following collections.
Both collections have full CRUD operations.
#### Users
- **Collection Endpoint**: `/users`
- **Singular Endpoint**: `/users/{username}`
- **Attributes**:
- `firstName` - the user's first name, between 1 and 55 characters. Required to Create a New User.
- `lastName` - the user's last name, between 1 and 55 characters. Required to Create a New User.
- `username` - username can only consist of letters and numbers between 1 and 55 characters. Required to Create a New User. Immutable.
- `email` - between 1 and 55 characters. Required to Create a New User.
- `password` - between 1 and 55 characters. Required to Create a New User.
- `currentCompany` - this should reference an ObjectId for a company
- `photo` - A valid URL for a photo
- `experience`
- `jobTitle`
- `company` (Company)
- `startDate` - ISO date-format timestamp when experience began.
- `endDate` - ISO date-format timestamp when experience ended.
- `education`
- `institution` - the institution where the user enrolled or is currently enrolled in.
- `degree` - the degree that the user earned or is currently earning.
- `endDate` - ISO date-format timestamp when education ended.
- `skills`
- `createdAt` - auto-generated timestamp of when the user was originally created.
- `updatedAt` - auto-generated timestamp of when the user was last updated.
#### Companies
- **Collection Endpoint**: `/companies`
- **Singular Endpoint**: `/companies/{handle}`
- **Attributes**:
- `name` - username can only consist of letters and numbers between 1 and 55 characters. Required to Create a New Company. Immutable.
- `email` - between 1 and 55 characters. Required to Create a New Company.
- `handle` - between 1 and 55 characters. Required to Create a New Company.
- `password` - between 1 and 55 characters. Required to Create a New Company.
- `logo` - a valid URL for the logo of the company
- `employees` - array of User IDs
- `jobs` - array of Job IDs
#### Jobs
- **Collection Endpoint**: `/jobs`
- **Singular Endpoint**: `/jobs/{jobId}`
- **Attributes**:
- `title` - the title for the job posting.
- `company` - this should reference an ObjectId for a company
- `salary` - a number for the salary offered in this post
- `equity` - a float for the equity offered in this post
- `createdAt` - auto-generated timestamp of when the job was originally created.
- `updatedAt` - auto-generated timestamp of when the job was last updated.
See the [Reference section](/#reference/0/auth) for fully-detailed resource documentation.
---
## UserAuth [/user-auth]
Endpoint for authenticating a user by getting a JWT from the server.
### Authorize to Receive a Token [POST]
+ Request
+ Attributes
+ data (UserAuth)
+ Response 200 (application/json; charset=utf-8)
+ Attributes
+ data
+ token: `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6Im1odWV0ZXIiLCJpYXQiOjE1MTAyMDcwMDl9.5oUeihYn2AkqGy6z3g5F5B46gWWgvGKilFr9S4gg-p4` (string, required) - JWT used to authenticate in the future. Put in `Authorization` request header like: `Bearer <TOKEN>`.
+ Request Bad Request
+ Attributes
+ data (UserAuth)
+ Response 400 (application/json; charset=utf-8)
+ Attributes
+ error (Bad Request)
+ Request Unauthorized
+ Attributes
+ data (UserAuth)
+ Response 401 (application/json; charset=utf-8)
+ Attributes
+ error (Unauthorized)
+ Request Not Found
+ Attributes
+ data (UserAuth)
+ Response 404 (application/json; charset=utf-8)
+ Attributes
+ error (Not Found)
## CompanyAuth [/company-auth]
Endpoint for authenticating a company by getting a JWT from the server.
### Authorize to Receive a Token [POST]
+ Request
+ Attributes
+ data (CompanyAuth)
+ Response 200 (application/json; charset=utf-8)
+ Attributes
+ data
+ token: `eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6Im1odWV0ZXIiLCJpYXQiOjE1MTAyMDcwMDl9.5oUeihYn2AkqGy6z3g5F5B46gWWgvGKilFr9S4gg-p4` (string, required) - JWT used to authenticate in the future. Put in `Authorization` request header like: `Bearer <TOKEN>`.
+ Request Bad Request
+ Attributes
+ data (CompanyAuth)
+ Response 400 (application/json; charset=utf-8)
+ Attributes
+ error (Bad Request)
+ Request Unauthorized
+ Attributes
+ data (CompanyAuth)
+ Response 401 (application/json; charset=utf-8)
+ Attributes
+ error (Unauthorized)
+ Request Not Found
+ Attributes
+ data (CompanyAuth)
+ Response 404 (application/json; charset=utf-8)
+ Attributes
+ error (Not Found)
## Users [/users{?skip,limit,q}]
Endpoint to create a user or query for a list of users.
### Get a List of Users [GET]
**UserAuth Required**. Note: passwords are not visible at this endpoint. By default, `limit` is set to 50.
+ Parameters
+ skip: 0 (number, optional) - the list of documents to skip over. Default is 0.
+ limit: 10 (number, optional) - the number of documents to return. Default and maximum set to 50.
+ q: `Matt Lane` (string, optional) - the field to search by.
+ Request
+ Response 200 (application/json; charset=utf-8)
+ Attributes
+ data (array[User])
+ Request Bad Request
+ Response 400 (application/json; charset=utf-8)
+ Attributes
+ error (Bad Request)
+ Request Unauthorized
+ Response 401 (application/json; charset=utf-8)
+ Attributes
+ error (Unauthorized)
### Create a New User [POST]
Note: password will not be present in the response.
The fields `username`, `password`, and `name` are required.
+ Request
+ Attributes
+ data (User)
+ Response 201 (application/json; charset=utf-8)
+ Attributes
+ data (User)
+ Request Bad Request
+ Response 400 (application/json; charset=utf-8)
+ Attributes
+ error (Bad Request)
+ Request Conflict
+ Response 409 (application/json; charset=utf-8)
+ Attributes
+ error (Conflict)
## User [/users/{username}]
Endpoint for reading, updating, or deleting a single user.
+ Parameters
+ username: mhueter (string, required) - the username to lookup.
### Get a User [GET]
**UserAuth Required**. Retrieve a single user document by `username`.
+ Request
+ Response 200 (application/json; charset=utf-8)
+ Attributes
+ data (User)
+ Request Unauthorized
+ Attributes
+ data (User)
+ Response 401 (application/json; charset=utf-8)
+ Attributes
+ error (Unauthorized)
+ Request Not Found
+ Response 404 (application/json; charset=utf-8)
+ Attributes
+ error (Not Found)
### Update a User [PATCH]
**UserAuth Required. Correct User Required.** Update a single user document by `username`. Note: `username` and `favorites` are immutable via this endpoint.
+ Request
+ Attributes
+ data (User)
+ Response 200 (application/json; charset=utf-8)
+ Attributes
+ data (User)
+ Request Bad Request
+ Attributes
+ data (User)
+ Response 400 (application/json; charset=utf-8)
+ Attributes
+ error (Bad Request)
+ Request Unauthorized
+ Attributes
+ data (User)
+ Response 401 (application/json; charset=utf-8)
+ Attributes
+ error (Unauthorized)
+ Request Not Found
+ Attributes
+ data (User)
+ Response 404 (application/json; charset=utf-8)
+ Attributes
+ error (Not Found)
### Delete a User [DELETE]
**UserAuth Required. Correct User Required.** Remove a single user document by `username`.
+ Request
+ Response 200 (application/json; charset=utf-8)
+ Attributes
+ data (Success)
+ Request Unauthorized
+ Response 401 (application/json; charset=utf-8)
+ Attributes
+ error (Unauthorized)
+ Request Not Found
+ Response 404 (application/json; charset=utf-8)
+ Attributes
+ error (Not Found)
## Jobs [/jobs{?skip,limit,q}]
Endpoint to create a user or query for a list of users.
### Get a List of Jobs [GET]
**UserAuth Required**. By default, `limit` is set to 50.
+ Parameters
+ skip: 0 (number, optional) - the list of documents to skip over. Default is 0.
+ limit: 50 (number, optional) - the number of documents to return. Default and maximum set to 50.
+ q: `Github` (string, optional) - the field to search by
+ Request
+ Response 200 (application/json; charset=utf-8)
+ Attributes
+ data (array[User])
+ Request Bad Request
+ Response 400 (application/json; charset=utf-8)
+ Attributes
+ error (Bad Request)
+ Request Unauthorized
+ Response 401 (application/json; charset=utf-8)
+ Attributes
+ error (Unauthorized)
### Create a New Job [POST]
**CompanyAuth Required**. The fields `title`, `company`, `salary`, and `equity` are required.
+ Request
+ Attributes
+ data (Job)
+ Response 201 (application/json; charset=utf-8)
+ Attributes
+ data (Job)
+ Request Bad Request
+ Response 400 (application/json; charset=utf-8)
+ Attributes
+ error (Bad Request)
+ Request Conflict
+ Response 409 (application/json; charset=utf-8)
+ Attributes
+ error (Conflict)
## Job [/jobs/{id}]
Endpoint for reading, updating, or deleting a single user.
+ Parameters
+ id: 4 (string, required) - the job to lookup.
### Get a Job [GET]
**UserAuth Required**. Retrieve a single job document by `id`.
+ Request
+ Response 200 (application/json; charset=utf-8)
+ Attributes
+ data (Job)
+ Request Unauthorized
+ Attributes
+ data (Job)
+ Response 401 (application/json; charset=utf-8)
+ Attributes
+ error (Unauthorized)
+ Request Not Found
+ Response 404 (application/json; charset=utf-8)
+ Attributes
+ error (Not Found)
### Update a Job [PATCH]
**CompanyAuth Required. Correct Job Required.** Update a single user document by `id`.
+ Request
+ Attributes
+ data (Job)
+ Response 200 (application/json; charset=utf-8)
+ Attributes
+ data (Job)
+ Request Bad Request
+ Attributes
+ data (Job)
+ Response 400 (application/json; charset=utf-8)
+ Attributes
+ error (Bad Request)
+ Request Unauthorized
+ Attributes
+ data (Job)
+ Response 401 (application/json; charset=utf-8)
+ Attributes
+ error (Unauthorized)
+ Request Not Found
+ Attributes
+ data (Job)
+ Response 404 (application/json; charset=utf-8)
+ Attributes
+ error (Not Found)
### Delete a Job [DELETE]
**CompanyAuth Required. Correct Job Required.** Remove a single job document by `id`.
+ Request
+ Response 200 (application/json; charset=utf-8)
+ Attributes
+ data (Success)
+ Request Unauthorized
+ Response 401 (application/json; charset=utf-8)
+ Attributes
+ error (Unauthorized)
+ Request Not Found
+ Response 404 (application/json; charset=utf-8)
+ Attributes
+ error (Not Found)
## Companies [/companies{?skip,limit,q}]
Endpoint to create a user or query for a list of users.
### Get a List of Companies [GET]
**Auth Required**. By default, `limit` is set to 50.
+ Parameters
+ skip: 0 (number, optional) - the list of documents to skip over. Default is 0.
+ limit: 50 (number, optional) - the number of documents to return. Default and maximum set to 50.
+ q: `Github` (string, optional) - the field to search by
+ Request
+ Response 200 (application/json; charset=utf-8)
+ Attributes
+ data (array[User])
+ Request Bad Request
+ Response 400 (application/json; charset=utf-8)
+ Attributes
+ error (Bad Request)
+ Request Unauthorized
+ Response 401 (application/json; charset=utf-8)
+ Attributes
+ error (Unauthorized)
### Create a New Company [POST]
The fields `name`, `password`, `email`, and `handle` are required.
+ Request
+ Attributes
+ data (Company)
+ Response 201 (application/json; charset=utf-8)
+ Attributes
+ data (Company)
+ Request Bad Request
+ Response 400 (application/json; charset=utf-8)
+ Attributes
+ error (Bad Request)
+ Request Conflict
+ Response 409 (application/json; charset=utf-8)
+ Attributes
+ error (Conflict)
## Company [/companies/{handle}]
Endpoint for reading, updating, or deleting a single company.
+ Parameters
+ handle: `hooli` (string, required) - the company to lookup.
### Get a Company [GET]
**UserAuth Required**. Retrieve a single company document by `handle`.
+ Request
+ Response 200 (application/json; charset=utf-8)
+ Attributes
+ data (Company)
+ Request Unauthorized
+ Attributes
+ data (Company)
+ Response 401 (application/json; charset=utf-8)
+ Attributes
+ error (Unauthorized)
+ Request Not Found
+ Response 404 (application/json; charset=utf-8)
+ Attributes
+ error (Not Found)
### Update a Company [PATCH]
**CompanyAuth Required. Correct Company Required.** Update a single company document by `handle`
+ Request
+ Attributes
+ data (Company)
+ Response 200 (application/json; charset=utf-8)
+ Attributes
+ data (Company)
+ Request Bad Request
+ Attributes
+ data (Company)
+ Response 400 (application/json; charset=utf-8)
+ Attributes
+ error (Bad Request)
+ Request Unauthorized
+ Attributes
+ data (Company)
+ Response 401 (application/json; charset=utf-8)
+ Attributes
+ error (Unauthorized)
+ Request Not Found
+ Attributes
+ data (Company)
+ Response 404 (application/json; charset=utf-8)
+ Attributes
+ error (Not Found)
### Delete a Company [DELETE]
**CompanyAuth Required. Correct Company Required.** Remove a single company document by `handle`.
+ Request
+ Response 200 (application/json; charset=utf-8)
+ Attributes
+ data (Success)
+ Request Unauthorized
+ Response 401 (application/json; charset=utf-8)
+ Attributes
+ error (Unauthorized)
+ Request Not Found
+ Response 404 (application/json; charset=utf-8)
+ Attributes
+ error (Not Found)
## Data Structures
### UserAuth
+ username: `mhueter` (string, optional) - username can only consist of letters and numbers between 1 and 55 characters.
+ password: `foo123` (string, optional) - between 1 and 55 characters.
### CompanyAuth
+ email: `gavin@hooli.com` (string, optional) - email can only consist of letters and numbers between 1 and 55 characters.
+ password: `bloodboy` (string, optional) - between 1 and 55 characters.
### User
+ firstName: `Michael` (string, optional) - the user's first name, between 1 and 55 characters. **Required to Create a New User.**
+ lastName: `Hueter` (string, optional) - the user's last name, between 1 and 55 characters. **Required to Create a New User.**
+ username: `mhueter` (string, optional) - username can only consist of letters and numbers between 1 and 55 characters. **Required to Create a New User. Immutable.**
+ email: `michael@rithmschool.com` (string, optional) - email can only consist of letters and numbers between 1 and 55 characters. **Required to Create a New User.**
+ password: `foo123` (string, optional) - between 1 and 55 characters. **Required to Create a New User.**
+ currentCompany: `5a21b155ac27667d3de5bfaa` - This should reference an ObjectId for a company
+ photo: `https://www.mhueter.com` (string, optional) - A valid URL for a photo
+ experience (array, optional)
+ (object)
+ jobTitle: `Instructor In Chief`
+ company: `5a21b155ac27667d3de5bfaa` - This should reference an ObjectId for a company
+ startDate: `2016-06-15T21:39:25.435000+00:00` (string, optional) - ISO date-format timestamp when experience began.
+ endDate: `2017-06-15T21:39:25.435000+00:00` (string, optional) - ISO date-format timestamp when experience ended.
+ education (array, optional)
+ (object)
+ institution: `School of Hard Knocks` - the institution where the user enrolled or is currently enrolled in.
+ degree: `Bachelors in Science` - the degree that the user earned or is currently earning.
+ endDate: `2014-06-15T21:39:25.435000+00:00` (string, optional) - ISO date-format timestamp when education ended.
+ skills (array[string])
+ createdAt: `017-11-09T18:38:39.409Z` (string, optional) - auto-generated timestamp of when the user was originally created.
+ updatedAt: `017-11-09T18:38:39.409Z` (string, optional) - auto-generated timestamp of when the user was last updated.
### Company
+ name: `Hooli` (string, optional) - username can only consist of letters and numbers between 1 and 55 characters. **Required to Create a New Company. Immutable.**
+ password: `bloodboy` (string, optional) - between 1 and 55 characters. **Required to Create a New Company.**
+ email: `gavin@hooli.com` (string, optional) - between 1 and 55 characters. **Required to Create a New Company.**
+ handle: `@hooli` (string, optional) - between 1 and 55 characters. **Required to Create a New Company.**
+ logo: `https://assets-cdn.github.com/images/modules/logos_page/GitHub-Mark.png` (string, optional) - a valid URL for the logo of the company
+ employees (array[User])
+ jobs (array[Job])
#### Job
+ title: `Software Developer` (string, optional) - the title for the job posting.
+ company: `5a21b155ac27667d3de5bfaa` - This should reference an ObjectId for a company
+ salary: 150000 (number, optional) - a number for the salary offered in this post
+ equity: 2.1 (number, optional) - a float for the equity offered in this post
+ createdAt: `017-11-09T18:38:39.409Z` (string, optional) - auto-generated timestamp of when the job was originally created.
+ updatedAt: `017-11-09T18:38:39.409Z` (string, optional) - auto-generated timestamp of when the job was last updated.
### Bad Request
+ status: 400 (number, required) - HTTP status code
+ title: 'Bad Request' (string, required) - text accompanying the status code
+ message: 'Invalid schema format or malformed JSON.' (string, required) - description of the error
### Unauthorized
+ status: 401 (number, required) - HTTP status code
+ title: 'Unauthorized' (string, required) - text accompanying the status code
+ message: 'You need to authenticate before accessing this resource.' (string, required) - description of the error
### Not Found
+ status: 404 (number, required) - HTTP status code
+ title: 'Not Found' (string, required) - text accompanying the status code
+ message: 'Document with that ID was not found.' (string, required) - description of the error
### Conflict
+ status: 409 (number, required) - HTTP status code
+ title: 'Conflict' (string, required) - text accompanying the status code
+ message: 'Another document with the same ID already exists.' (string, required) - description of the error
### Success
+ status: 200 (number, required) - HTTP status code
+ title: 'Success' (string, required) - text accompanying the status code
+ message: 'The operation was successful.' (string, required) - description of the event