This repository has been archived by the owner on Jan 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapiary.apib
1135 lines (862 loc) · 30.1 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
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: http://lore.odl.mit.edu/api/v1/
# LORE
The Learning Objects Repository for Education (LORE) project seeks to build a library of online “learning objects” that will enable the efficient reuse of resources from previous MITx courses by professors and instructional staff. See https://github.com/mitodl/lore
This API exposes the LORE application as a RESTful web service.
# URL
URL Structure is `https://{domain}/api/v1/{resource}/{resource_id}/`
| Code | Description |
| --- | --- |
|`{domain}` | The domain of the LORE service. `private-b0103d-lore.apiary-mock.com/` is the Apiary mock server. |
|`/api/v1/` | The service endpoint includes the current version (v1). |
|`{resource}` | The resource endpoint for a specific set of items in the system. |
|`{resource_id}` |The `resource_id` sets the unique identifier (name or numerical) for a specific item to reference. |
*Example: `http://lore.odl.mit.edu/api/v1/repositories/` will return a JSON representation of all repositories.*
*Example: `http://lore.odl.mit.edu/api/v1/repositories/physics-1/` will return a JSON representation of the repository with name "physics-1".*
*Example: `http://lore.odl.mit.edu/api/v1/repositories/physics-1/learning_resources/1007/` will return a JSON representation
of the learning resource with ID=1007.*
# Operations
LORE API uses the following HTTP verbs:
| Verb | Description |
| --- | --- |
|`GET` |Select one or more items. Success returns 200 status code with JSON result item(s) in body.|
|`POST` |Create a new item. Success returns 201 status code with newly created JSON item in body.|
|`PUT` |Update an item. Success returns 200 status code with updated JSON item in body.|
|`PATCH` |Update part of an item. Success returns a 200 status code with updated JSON item in body.|
|`DELETE`|Delete an item. Success returns 204 status code with no body.|
# Status Codes
The API responds with one of the following status codes:
| Code| Description |
| --- | --- |
|`200`| Success - request completed. |
|`201`| Success - new resource created. |
|`204`| Success - no content to return, resource successfully deleted. |
|`400`| Bad Request - request could not be parsed. |
|`401`| Unauthorized - user is not logged in, cannot access resource. |
|`403`| Forbidden - user does not have permission to access resource. |
|`404`| Not Found - resource doesn't exist. |
|`405`| Method Not Allowed - resource cannot be accessed using this method. |
|`422`| Unprocessable Entity - request could not be parsed due to validation errors. |
|`500`| Server error - request could not be processed due to a server error. |
# Authentication
The API uses basic or session-based authentication to authenticate users using the same credentials as the main application.
# Pagination
Requests that return multiple items accept a `?page` parameter.
Example: `http://lore.odl.mit.edu/api/v1/repositories/?page=2`
Page numbering is 1-based. Omitting the `?page` parameter will return the first page. There are up to 20 results per page.
# LORE API
## Group LearningResourceTypes
## LearningResourceType Collection [/learning_resource_types/]
### List All LearningResourceTypes [GET]
+ Response 200 (application/json)
{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"name": "course"
},
{
"name": "chapter"
}
]
}
## Group Tasks
## Tasks Collection [/tasks/]
### List All Tasks [GET]
List all recent tasks for a user.
+ Response 200 (application/json)
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": "45e3c830-0ff8-4d84-85b4-c0a6e3ce81b3",
"status": "processing",
"result": {
"url": "/media/resource_exports/sarah_exports.tar.gz",
"collision": false
},
"task_type": "resource_export",
"task_info": {
"repo_slug": "repo",
"ids": [
23517,
23518
]
}
}
]
}
### Create a New Task [POST]
Queue a new task.
+ Request (application/json)
{
"task_info": {
"repo_slug": "repo",
"ids": [1]
},
"task_type": "resource_export"
}
+ Response 200 (application/json)
{
"id": "45e3c830-0ff8-4d84-85b4-c0a6e3ce81b3"
}
## Task [/tasks/{task_id}/]
+ Parameters
+ task_id: `45e3c830-0ff8-4d84-85b4-c0a6e3ce81b3` (string, required) - task identifier
### Retrieve a Task [GET]
+ Response 200 (application/json)
{
"id": "45e3c830-0ff8-4d84-85b4-c0a6e3ce81b3",
"status": "processing",
"result": {
"url": "/media/resource_exports/sarah_exports.tar.gz",
"collision": false
},
"task_type": "resource_export",
"task_info": {
"repo_slug": "repo",
"ids": [
23517,
23518
]
}
}
## Group Repositories
## Repository Collection [/repositories/]
### List All Repositories [GET]
+ Response 200 (application/json)
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": 1,
"slug": "physics-1",
"name": "Physics 1",
"description": "All intro-to-physics courses",
"create_date": "2015-06-22"
}
]
}
### Create a New Repository [POST]
Create a repository by providing its JSON representation.
+ Request (application/json)
{
"name": "Physics 1",
"description": "All intro-to-physics courses"
}
+ Response 201 (application/json)
+ Headers
Location: /api/v1/repositories/physics-1/
+ Body
{
"id": 1,
"slug": "physics-1",
"name": "Physics 1",
"description": "All intro-to-physics courses",
"create_date": "2015-06-17"
}
## Repository [/repositories/{repo_slug}/]
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
### Retrieve a Repository [GET]
+ Response 200 (application/json)
{
"id": 1,
"slug": "physics-1",
"name": "Physics 1",
"description": "All intro-to-physics courses",
"create_date": "2015-06-22"
}
## Group Courses
## Course Collection [/repositories/{repo_slug}/courses/]
### List All Courses [GET]
+ Response 200 (application/json)
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": 1,
"org": "MITx",
"course_number": "1.Mech",
"run": "1T2010"
}
]
}
## Course [/repositories/{repo_slug}/courses/{course_id}/]
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
+ course_id: `1` (number, required) - ID of the course
### Retrieve a Course [GET]
+ Response 200 (application/json)
{
"id": 1,
"org": "MITx",
"course_number": "1.Mech",
"run": "1T2010"
}
### Delete Course [DELETE]
Deletes a course, all learning resources and static assets in it.
+ Response 204 (application/json)
## Group SearchResults
## SearchResult Collection [/repositories/{repo_slug}/search/{?q,sortby,selected_facets}]
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
+ q: `zebra` (string, optional) - a piece of text to search with. If this is blank or omitted all results will be returned.
+ sortby: `nr_views` (string, optional) - a column to sort results by. This is descending by default, add prefix '-' to sort in ascending order. May be one of: nr_views, nr_attempts, avg_grade.
+ selected_facets: `course:DemoX` (string, optional) - a facet to narrow searches. Param may be specified more than once to narrow on multiple facets.
### List SearchResults [GET]
+ Response 200 (application/json)
+ Body
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"resource_type": "discussion",
"course": "DemoX",
"run": "Demo_Course",
"xa_nr_views": 12,
"xa_nr_attempts": 1,
"xa_avg_grade": 4.0,
"lid": 91,
"title": "Peer Grading",
"description": "",
"description_path": "...",
"preview_url": "..."
}
],
"facet_counts": {
"course": {
"facet": {
"key": "course",
"label": "Course"
},
"values": [
{
"count": 1,
"key": "DemoX",
"label": "DemoX"
}
]
},
"run": {
"facet": {
"key": "run",
"label": "Run"
},
"values": [
{
"count": 1,
"key": "Demo_Course",
"label": "Demo_Course"
}
]
},
"resource_type": {
"facet": {
"key": "resource_type",
"label": "Item Type"
},
"values": [
{
"count": 1,
"key": "discussion",
"label": "discussion"
}
]
}
}
}
## Group LearningResources
## LearningResource Collection [/repositories/{repo_slug}/learning_resources/{?id}]
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
+ id: `1,9` (string, optional) - comma separated list of LearningResource ids. Will filter out LearningResources not in this list.
### List LearningResources [GET]
+ Response 200 (application/json)
+ Body
{
"count": 139,
"next": "http://lore.odl.mit.edu/api/v1/repositories/repo/learning_resources/?page=2",
"previous": null,
"results": [
{
"id": 8,
"learning_resource_type": "vertical",
"static_assets": [],
"title": "Getting Started",
"description": "description",
"content_xml": "<vertical ...",
"materialized_path": "/course/chapter[2]/sequential[1]/vertical[1]",
"url_path": "",
"parent": 7,
"copyright": "",
"xa_nr_views": 0,
"xa_nr_attempts": 0,
"xa_avg_grade": 0.0,
"xa_histogram_grade": 0.0,
"terms": [],
"preview_url": "https://www.example.com/courses..."
},
...
]
}
## LearningResource [/repositories/{repo_slug}/learning_resources/{learningresource_id}/]
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
+ learningresource_id: `8` (number, required) - ID of the LearningResource
### View a LearningResource [GET]
+ Response 200 (application/json)
{
"id": 8,
"learning_resource_type": "vertical",
"static_assets": [],
"title": "Getting Started",
"description": "description",
"content_xml": "<vertical ...",
"materialized_path": "/course/chapter[2]/sequential[1]/vertical[1]",
"url_path": "",
"parent": 7,
"copyright": "",
"xa_nr_views": 0,
"xa_nr_attempts": 0,
"xa_avg_grade": 0.0,
"xa_histogram_grade": 0.0,
"terms": [],
"preview_url": "https://www.example.com/courses..."
}
### Partially Update a LearningResource [PATCH]
+ Request (application/json)
{
"description": "changed description"
}
+ Response 200 (application/json)
{
"id": 8,
"learning_resource_type": "vertical",
"static_assets": [],
"title": "Getting Started",
"description": "changed description",
"content_xml": "<vertical ...",
"materialized_path": "/course/chapter[2]/sequential[1]/vertical[1]",
"url_path": "",
"parent": 7,
"copyright": "",
"xa_nr_views": 0,
"xa_nr_attempts": 0,
"xa_avg_grade": 0.0,
"xa_histogram_grade": 0.0,
"terms": [],
"preview_url": "https://www.example.com/courses..."
}
### Update a LearningResource [PUT]
+ Request (application/json)
{
"description": "changed description",
"terms": []
}
+ Response 200 (application/json)
{
"id": 8,
"learning_resource_type": "vertical",
"static_assets": [],
"title": "Getting Started",
"description": "changed description",
"content_xml": "<vertical ...",
"materialized_path": "/course/chapter[2]/sequential[1]/vertical[1]",
"url_path": "",
"parent": 7,
"copyright": "",
"xa_nr_views": 0,
"xa_nr_attempts": 0,
"xa_avg_grade": 0.0,
"xa_histogram_grade": 0.0,
"terms": [],
"preview_url": "https://www.example.com/courses..."
}
## Group LearningResourceExports
List of LearningResources to be exported. This is stored per user and is deleted on logout.
## LearningResourceExport Collection [/repositories/{repo_slug}/learning_resource_exports/{username}/]
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
+ username: `sarah` (string, required) - owner of exports (must be logged in user)
### List All LearningResourceExports [GET]
+ Response 200 (application/json)
+ Body
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": 13
}
]
}
### Delete LearningResourceExports [DELETE]
Clears the export list for this repository.
+ Response 204 (application/json)
### Add a LearningResource ID to Export list [POST]
+ Request (application/json)
{
"id": 15
}
+ Response 201 (application/json)
{
"id": 15
}
## LearningResourceExport [/repositories/{repo_slug}/learning_resource_exports/{username}/]
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
+ username: `sarah` (string, required) - owner of exports (must be logged in user)
### View a LearningResourceExport [GET]
+ Response 200 (application/json)
{
"id": 13
}
### Delete an ID from the LearningResource export list [DELETE]
+ Response 204 (application/json)
## Group LearningResourceExportTasks
## LearningResourceExportTasks Collection [/repositories/{repo_slug}/learning_resource_export_tasks/]
Deprecated. Use /api/v1/tasks/ instead.
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
### List All LearningResourceExportTasks [GET]
List all recent LearningResourceExportTasks for a user.
+ Response 200 (application/json)
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": "45e3c830-0ff8-4d84-85b4-c0a6e3ce81b3",
"status": "processing",
"url": "/media/resource_exports/sarah_exports.tar.gz"
}
]
}
### Create a New LearningResourceExportTask [POST]
Queue a new LearningResourceExportTask task for the given LearningResource ids.
+ Request (application/json)
{
"ids": [1]
}
+ Response 200 (application/json)
{
"id": "45e3c830-0ff8-4d84-85b4-c0a6e3ce81b3"
}
## LearningResourceExportTask [/repositories/{repo_slug}/learning_resource_export_tasks/{task_id}/]
Deprecated. Use /api/v1/tasks/ instead.
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
+ task_id: `45e3c830-0ff8-4d84-85b4-c0a6e3ce81b3` (string, required) - task identifier
### Retrieve a LearningResourceExportTask [GET]
+ Response 200 (application/json)
{
"id": "45e3c830-0ff8-4d84-85b4-c0a6e3ce81b3",
"status": "success",
"url": "/media/resource_exports/sarah_exports.tar.gz"
}
## Group StaticAssets
## StaticAssets Collection [/repositories/{repo_slug}/learning_resources/{learningresource_id}/static_assets/]
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
+ learningresource_id: `1` (number, required) - ID of the LearningResource
### List All StaticAssets [GET]
+ Response 200 (application/json)
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": 1,
"asset": "assets/edX/DemoX/Demo_Course/L9_buckets.png",
"name": "L9_buckets.png"
}
]
}
## StaticAsset [/repositories/{repo_slug}/learning_resources/{learningresource_id}/static_assets/{static_asset_id}/]
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
+ learningresource_id: `1` (number, required) - ID of the LearningResource
+ static_asset_id: `1` (number, required) - ID of the StaticAsset
### View a StaticAsset [GET]
+ Response 200 (application/json)
{
"id": 1,
"asset": "assets/edX/DemoX/Demo_Course/L9_buckets.png",
"name": "L9_buckets.png"
}
## Group Vocabularies
## Vocabularies Collection [/repositories/{repo_slug}/vocabularies/{?type_name}]
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
+ type_name: `Problem` (string, optional) - if specified, filter by this learning resource type
### List All Vocabularies [GET]
+ Response 200 (application/json)
+ Body
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": 7,
"slug": "difficulty",
"name": "difficulty",
"description": "Learning resource difficulty",
"vocabulary_type": "m",
"required": true,
"weight": 1,
"learning_resource_types": [
"Problem",
"Vertical"
],
"terms": [
{
"id": 1,
"slug": "easy",
"label": "Easy",
"weight": 1
}
],
"multi_terms": false
}
]
}
### Create a New Vocabulary [POST]
+ Request (application/json)
{
"name": "difficulty",
"description": "Learning resource difficulty",
"vocabulary_type": "m",
"weight": 1,
"required": true,
"learning_resource_types": [
"Problem",
"Vertical"
],
"multi_terms": false
}
+ Response 201 (application/json)
+ Headers
Location: /api/v1/repositories/physics-1/vocabularies/difficulty/
+ Body
{
"id": 7,
"slug": "difficulty",
"name": "difficulty",
"description": "Learning resource difficulty",
"vocabulary_type": "m",
"required": true,
"weight": 1,
"learning_resource_types": [
"Problem",
"Vertical"
],
"terms": [],
"multi_terms": false
}
## Vocabulary [/repositories/{repo_slug}/vocabularies/{vocab_slug}/]
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
+ vocab_slug: `difficulty` (string, required) - slug for the vocabulary
### View a Vocabulary [GET]
+ Response 200 (application/json)
{
"id": 7,
"slug": "difficulty",
"name": "difficulty",
"description": "Learning resource difficulty",
"vocabulary_type": "m",
"required": true,
"weight": 1,
"learning_resource_types": [
"Problem",
"Vertical"
],
"terms": [
{
"id": 1,
"slug": "easy",
"label": "Easy",
"weight": 1
}
],
"multi_terms": false
}
### Partially Update a Vocabulary [PATCH]
+ Request (application/json)
{
"vocabulary_type": "f"
}
+ Response 200 (application/json)
{
"id": 7,
"slug": "difficulty",
"name": "difficulty",
"description": "Learning resource difficulty",
"vocabulary_type": "f",
"required": true,
"weight": 1,
"learning_resource_types": [
"Problem",
"Vertical"
],
"terms": [
{
"id": 1,
"slug": "easy",
"label": "Easy",
"weight": 1
}
],
"multi_terms": false
}
### Update a Vocabulary [PUT]
+ Request (application/json)
{
"id": 7,
"slug": "difficulty",
"name": "difficulty",
"description": "Learning resource difficulty",
"vocabulary_type": "f",
"required": false,
"weight": 123,
"learning_resource_types": [
"Problem",
"Vertical"
],
"multi_terms": false
}
+ Response 200 (application/json)
{
"id": 7,
"slug": "difficulty",
"name": "difficulty",
"description": "Learning resource difficulty",
"vocabulary_type": "f",
"required": true,
"weight": 1,
"learning_resource_types": [
"Problem",
"Vertical"
],
"terms": [
{
"id": 1,
"slug": "easy",
"label": "Easy",
"weight": 1
}
],
"multi_terms": false
}
## Group Terms
## Terms Collection [/repositories/{repo_slug}/vocabularies/{vocab_slug}/terms/{?learning_resource_type%5b%5d}]
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
+ vocab_slug: `difficulty` (string, required) - slug for the vocabulary
+ learning_resource_type: `chapter` (string, optional) - types of learning resources
### List All Terms [GET]
+ Response 200 (application/json)
+ Body
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": 1,
"slug": "easy",
"label": "Easy",
"weight": 1
}
]
}
### Create a New Term [POST]
+ Request (application/json)
{
"label": "Easy",
"weight": 1
}
+ Response 201 (application/json)
+ Headers
Location: /api/v1/repositories/physics-1/vocabularies/difficulty/terms/easy
+ Body
{
"id": 1,
"slug": "easy",
"label": "Easy",
"weight": 1
}
## Term [/repositories/{repo_slug}/vocabularies/{vocab_slug}/terms/{term_slug}/]
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
+ vocab_slug: `difficulty` (string, required) - slug for the vocabulary
+ term_slug: `easy` (string, required) - slug for the term
### View a Term [GET]
+ Response 200 (application/json)
{
"id": 1,
"slug": "easy",
"label": "Easy",
"weight": 1
}
### Partially Update a Term [PATCH]
+ Request (application/json)
{
"weight": 2
}
+ Response 200 (application/json)
{
"id": 1,
"slug": "easy",
"label": "Easy",
"weight": 2
}
### Update a Term [PUT]
+ Request (application/json)
{
"label": "Easy",
"weight": 3
}
+ Response 200 (application/json)
{
"id": 1,
"slug": "easy",
"label": "Easy",
"weight": 3
}
## Group Members
Represents users / members of the repository
## Members Collection [/repositories/{repo_slug}/members/]
+ Parameters
+ repo_slug: `physics-1` (string, required) - slug for the repository
### List All Members [GET]
+ Response 200 (application/json)
+ Body
{
"count": 4,
"next": null,
"previous": null,
"results": [
{
"username": "james",
"group_type": "administrators"
},
{
"username": "patricia",
"group_type": "administrators"
},
{
"username": "patricia",
"group_type": "curators"
},
{
"username": "linda",
"group_type": "authors"
}