-
Notifications
You must be signed in to change notification settings - Fork 86
/
api.apib
3981 lines (2398 loc) · 105 KB
/
api.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
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
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
FORMAT: 1A
HOST: https://api.codecorps.org
# API Reference
The Code Corps API is a [JSON API](http://jsonapi.org/)-based REST API built in Elixir. You can visit the [API project on GitHub](https://github.com/code-corps/code-corps-api).
This document outlines how to interact with the API's resource-oriented URLs. JSON API errors returned by the API are also documented along with their HTTP status codes.
This API is intended for direct consumption by the Code Corps Ember application.
The production API can be found at `https://api.codecorps.org`.
The staging API can be found at `http://api.pbqrpbecf.org`.
The remote development API can be found at `http://api.pbqrpbecf-qri.org`.
# Group Authentication
When using the API's authenticated endpoints you can authenticate users by exchanging the `username` (email address) and `password` for a JSON Web Token.
## JSON Web Token Exchange [/token]
Exchange email and password for `token`.
### Exchange email and password for token [POST]
+ Request
+ Attributes
+ username: `me@testuser.org` (string, required) - The user's email address.
+ password: `password` (string, required)
+ Headers
Content-Type: application/vnd.api+json
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Valid Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token No User With Email Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Password Response)
## JSON Web Token Refresh [/token/refresh]
### Refresh the token [POST]
+ Request
+ Attributes
+ token: `eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJVc2VyOjEiLCJleHAiOjE0NzY3NTQ2MTcsImlhdCI6MTQ3NDE2MjYxNywiaXNzIjoiQ29kZUNvcnBzIiwianRpIjoiMDY2ODQ0OWYtNWY5OC00ODVkLWI4NTktNjRhZDhmZDU3NWQ4IiwicGVtIjp7fSwic3ViIjoiVXNlcjoxIiwidHlwIjoidG9rZW4ifQ.Y80alu1UEmk4uxGgA7ORVdS8ikuUJFxCozyK6S9UeaLW392Vhti4d1Y1IXivWA_j9TKjADhqTQnMihbCzUiLsA` (string, required) - The JSON Web Token provided in the create step.
+ Headers
Content-Type: application/vnd.api+json
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Valid Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Expired Response)
# Group Categories
This endpoint is for creating and returning the categories available for projects and users.
The Category resource allows us to categorize projects (Project Category), as well as identify a user's interests (User Category). The categories of "Society", "Technology" or "Government", for example, could all be used to categorize projects or match to a user's given interests.
## Categories [/categories]
### Create a category [POST]
+ Request
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (Category Response)
+ Response 422 (application/vnd.api+json; charset=utf-8)
+ Attributes (Unprocessable Entity Response)
### List all categories [GET]
+ Request
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Categories Response)
## Category [/categories/{id}]
### Retrieve a category [GET]
+ Request
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Category Response)
+ Response 404 (application/vnd.api+json; charset=utf-8)
+ Attributes (Record Not Found Response)
### Update a category [PATCH]
+ Request
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (Category Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
+ Response 404 (application/vnd.api+json; charset=utf-8)
+ Attributes (Record Not Found Response)
# Group Comments
This endpoint is for creating and returning comments.
## Comments [/comments]
You can list all comments or retrieve individual comments, as well as create and update comments.
### Create a comment [POST]
+ Request
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Attributes (Comment Create Request)
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (Comment Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
+ Response 422 (application/vnd.api+json; charset=utf-8)
+ Attributes (Unprocessable Entity Response)
### Filter comments by list of ids [GET /comments{?filter[id]}]
+ Request
+ Attributes
+ `filter[id]`: `1,2,3` (string, required) - Comma separated string of `ids` to filter by.
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Comments Response)
## Comment [/comments/{id}]
+ Parameters
+ id (number, required)
### Update a comment [PATCH]
+ Request
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Attributes (Comment Update Request)
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (Comment Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
+ Response 422 (application/vnd.api+json; charset=utf-8)
+ Attributes (Unprocessable Entity Response)
# Group Donation Goals
This resource describes one of any number of donation goals a project might have. A project cannot create a donation goal until they have started accepting payment with Stripe.
## Donation Goals [/donation-goals]
### Create a donation goal [POST]
To create a donation goal the user must be a site admin or the owner of the referenced project.
+ Request
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Attributes (Donation Goal Create Request)
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (Donation Goal Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
+ Response 404 (application/vnd.api+json; charset=utf-8)
+ Attributes (Record Not Found Response)
+ Response 422 (application/vnd.api+json; charset=utf-8)
+ Attributes (Unprocessable Entity Response)
### List all donation goals [GET]
+ Request
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Donation Goals Response)
### Filter by id [GET /donation-goals{?filter[id]}]
+ Request
+ Attributes
+ `filter[id]`: `1,2,3` (string, required) - Comma separated string of `ids` to filter by.
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Donation Goals Response)
+ Response 404 (application/vnd.api+json; charset=utf-8)
+ Attributes (Record Not Found Response)
## Donation Goal [/donation-goals/{id}]
+ Parameters
+ id (number, required)
### Retrieve a donation goal [GET]
+ Request
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Donation Goal Response)
+ Response 404 (application/vnd.api+json; charset=utf-8)
+ Attributes (Record Not Found Response)
### Update a donation goal [PATCH]
To update a donation goal the user must be a site admin or the owner of the referenced project.
+ Request
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Attributes (Donation Goal Update Request)
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Donation Goal Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
+ Response 404 (application/vnd.api+json; charset=utf-8)
+ Attributes (Record Not Found Response)
+ Response 422 (application/vnd.api+json; charset=utf-8)
+ Attributes (Unprocessable Entity Response)
### Delete a donation goal [DELETE]
To delete a donation goal the user must be a site admin or the owner of the referenced project.
+ Request
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Response 204 (application/vnd.api+json; charset=utf-8)
+ Attributes (No Content Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
+ Response 404 (application/vnd.api+json; charset=utf-8)
+ Attributes (Record Not Found Response)
# Group Github App Installations
This endpoint is used for creating, updating, and retrieving information about a GitHub App installation. See the GitHub API documentation for more details about [the installation process of GitHub Apps](https://developer.github.com/apps/building-integrations/setting-up-a-new-integration/about-choosing-an-integration-type/#installation-processes-for-integrations).
To simplify, Code Corps has a GitHub App which is installed to a GitHub user's or GitHub organization's account _on GitHub_. This grants Code Corps read and write access to the GitHub API on behalf of that user or organization.
You'll notice project and user relationships, which are only useful when setting up an installation for the first time. When GitHub redirects the user back to Code Corps after installing the GitHub App, our client only has access to the installation's `installation_id` in a query parameter. Because of this, before we direct the user to GitHub to install our App, we need to create a GithubAppInstallation record that keeps track of the user who requested it, the project it was requested on. This installation will be automatically marked with the `state` set to `"unprocessed"` and the `origin` set to `"codecorps"`.
Note that this does not mean there's actually an installation yet! The user hasn't been to GitHub. We're just keeping track of that installation for later.
Once the user installs the App on GitHub, GitHub will send an `installation` webhook to our API. The payload includes a `sender` key containing the GitHub account (along with its `id`) that performed the installation. The user is then automatically redirected back to Code Corps.
Once the user is back on Code Corps, we want to redirect the user back to the target project. Luckily, the `installation_id` GitHub provided in the query parameter yields enough information to match it to our authenticated user's GithubAppInstallation record created in the previous step.
We match:
- the `installation_id` in the query parameter
- the `installation` webhook's `installation_id` and `sender`'s account `id`
- our user's GitHub account `id`
These pieces of information are enough to tell us who installed the application. And because we stored the target project for this first installation, we can redirect our user. The API may need to do some processing work to complete the setup, but once the `state` has moved to `processed`, the client can redirect to the project's integrations page using the project relationship.
Keep in mind that an installation could be used across multiple projects. And because an installation can be installed at the _organization_ level on GitHub, that means the user who requested the installation is likely not be the only user with permissions on GitHub to modify or even uninstall the GitHub App. The user relationship specified here is _only_ useful for the first installation of a user on a project, due solely to the complicated redirection flow detailed above.
## Github App Installations [/github-app-installations]
### Create a Github app installation [POST]
+ Request
+ Attributes (Github App Installation Create Request)
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (Github App Installation Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
### Filter by id [GET /github-app-installations{?filter[id]}]
+ Request
+ Attributes
+ `filter[id]`: `1,2,3` (string, required) - Comma separated string of `ids` to filter by.
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Github App Installations Response)
## Github App Installation [/github-app-installations/{id}]
+ Parameters
+ id (number, required)
### Retrieve a Github app installation [GET]
+ Request
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Github App Installation Response)
# Group Github Repos
This endpoint is used for retrieving information about a Github Repo for display only.
Note that a Github Repo relates 1:1 to a Github App Installation, since only a single installation of the Code Corps GitHub App will happen on a GitHub account. A Github Repo will never be duplicated and does not need to have a many-to-many relationship.
## Github Repos [/github-repos]
### Filter by id [GET /github-repos{?filter[id]}]
+ Request
+ Attributes
+ `filter[id]`: `1,2,3` (string, required) - Comma separated string of `ids` to filter by.
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Github Repos Response)
## Github Repo [/github-repos/{id}]
+ Parameters
+ id (number, required)
### Retrieve a Github repo [GET]
+ Request
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Github Repo Response)
# Group Organization Github App Installations
## Organization Github App Installations [/organization-github-app-installations]
### Create an Organization Github app installation [POST]
+ Request
+ Attributes (Organization Github App Installation Create Request)
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (Organization Github App Installation Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
### Filter by id [GET /organization-github-app-installations{?filter[id]}]
+ Request
+ Attributes
+ `filter[id]`: `1,2,3` (string, required) - Comma separated string of `ids` to filter by.
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Organization Github App Installations Response)
### List all organization github app installations [GET]
+ Request
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Organization Github App Installations Response)
## Organization Github App Installation [/organization-github-app-installations/{id}]
+ Parameters
+ id (number, required)
### Retrieve an Organization github app installation [GET]
+ Request
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Organization Github App Installation Response)
### Delete an Organization Github App Installation [DELETE]
+ Request
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Response 204 (application/vnd.api+json; charset=utf-8)
+ Attributes (No Content Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
#Group Organization Invites
This endpoint is for Creating, Updating, returning Organization Invites on Code Corps.
##Organization Invites [/organization-invites]
### Create an organization invite [POST]
Admin creates new organization invites which contains `email` and `title`. A `code` is automatically generated on creation.
On successful creation an email is sent to the given `email` address.
+ Request
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer <token>
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (Organization Invite Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
+ Response 422 (application/vnd.api+json; charset=utf-8)
+ Attributes (Unprocessable Entity Response)
### Filter by id [GET /organization-invites{?filter[id]}]
+ Request
+ Attributes
+ `filter[id]`: `1,2,3` (string, required) - Comma separated string of `ids` to filter by.
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Organization Invites Response)
+ Response 400 (application/vnd.api+json; charset=utf-8)
+ Attributes (Filter Missing Response)
## Organization Invite [/organization-invites/{id}]
+ Parameters
+ id (number, required)
### Retrieve an organization invite [GET]
+ Request
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Organization Invite Response)
+ Response 404 (application/vnd.api+json; charset=utf-8)
+ Attributes (Record Not Found Response)
### Update an organization invite [PATCH]
+ Request (application/vnd.api+json; charset=utf-8)
+ Attributes (Organization Invite Resource)
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (Organization Invite Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
+ Response 422 (application/vnd.api+json; charset=utf-8)
+ Attributes (Unprocessable Entity Response)
# Group Organizations
This endpoint retrieves Organizations on Code Corps. Organizations usually have one or more Projects.
A valid `invite_code` parameter is required to create an Organization. Without this parameter, only admin users are allowed to create new organizations.
## Organizations [/organizations]
### Create an organization [POST]
+ Request
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer <token>
+ Attributes (Organization Create Request)
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (Organization Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
+ Response 422 (application/vnd.api+json; charset=utf-8)
+ Attributes (Unprocessable Entity Response)
### Filter by id [GET /organizations{?filter[id]}]
+ Request
+ Attributes
+ `filter[id]`: `1,2,3` (string, required) - Comma separated string of `ids` to filter by.
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Organizations Response)
+ Response 400 (application/vnd.api+json; charset=utf-8)
+ Attributes (Filter Missing Response)
## Organization [/organizations/{id}]
+ Parameters
+ id (number, required)
### Retrieve an organization [GET]
+ Request
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Organization Response)
+ Response 404 (application/vnd.api+json; charset=utf-8)
+ Attributes (Record Not Found Response)
### Update an organization [PATCH]
+ Request (application/vnd.api+json; charset=utf-8)
+ Attributes (Organization Resource)
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (Organization Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
+ Response 422 (application/vnd.api+json; charset=utf-8)
+ Attributes (Unprocessable Entity Response)
# Group Password
This endpoint is a parent route for reset and forgot password endpoints
## Forgot [/forgot]
### Forgot Password [POST]
+ Request
+ Attributes (Forgot Password Request)
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer <token>
+ Response 200 (application/vnd.api+json; charset=utf-8)
## Reset [/password/reset]
Reset Password resource allow a user to reset their password
### Reset Password [POST]
+ Request
+ Attributes (Reset Password Request)
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Valid Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token No User With Email Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Password Response)
# Group Previews
Preview resources allow a user to create a temporary HTML preview for any kind of markdown.
## Preview [/previews]
### Create a preview [POST]
+ Request
+ Attributes (Preview Create Request)
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (Preview Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
+ Response 422 (application/vnd.api+json; charset=utf-8)
+ Attributes (Unprocessable Entity Response)
# Group Project Categories
This resource identifies a relationship between a Project and a Category. For example, the category of "Society" may belong to a given project.
## Project Categories [/project-categories]
### Create a project category [POST]
+ Request
+ Attributes (Project Category Create Request)
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (Project Category Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 422 (application/vnd.api+json; charset=utf-8)
+ Attributes (Unprocessable Entity Response)
### List all project categories [GET]
+ Request
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Project Categories Response)
## Project Category [/project-categories/{id}]
+ Parameters
+ id (number, required)
### Retrieve a project category [GET]
+ Request
+ Headers
Accept: application/vnd.api+json
+ Response 200 (application/vnd.api+json; charset=utf-8)
+ Attributes (Project Category Response)
+ Response 404 (application/vnd.api+json; charset=utf-8)
+ Attributes (Record Not Found Response)
### Delete a project category [DELETE]
+ Request
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Response 204 (application/vnd.api+json; charset=utf-8)
+ Attributes (No Content Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 403 (application/vnd.api+json; charset=utf-8)
+ Attributes (Forbidden Response)
# Group Project Github Repos
This resource identifies a relationship between a Project and a GitHub repository. This relationship indicates whether the project is connected to a particular repository on GitHub and listening for events on that repository (like an issue being created). This is essential for the operation of the GitHub integration for syncing new issues and comments from GitHub to Code Corps.
For example, the project "Code Corps" may have the GitHub repositories of "code-corps-api" and "code-corps-ember" syncing with the project's tasks _on Code Corps itself_.
The organization owner can update their projects by connecting or disconnecting GitHub repositories that are available under their GitHub App installation. This will create or delete the Project Github Repo records, respectively.
## Project Github Repos [/project-github-repos]
### Create a project GitHub repo [POST]
+ Request
+ Attributes (Project Github Repo Create Request)
+ Headers
Accept: application/vnd.api+json
Authorization: Bearer {token}
+ Response 201 (application/vnd.api+json; charset=utf-8)
+ Attributes (Project Github Repo Response)
+ Response 401 (application/vnd.api+json; charset=utf-8)
+ Attributes (JSON Web Token Invalid Response)
+ Response 422 (application/vnd.api+json; charset=utf-8)
+ Attributes (Unprocessable Entity Response)
### List all project GitHub repos [GET]