Get a single problem grade
GET/api/courses/:id/assignments/:aid/problems/:pid/grade/:studentId
Reads one student's grade and feedback for a specific problem within an assignment. The student themselves, course staff, or a system admin. Returns nulls (not 404) when the problem exists but hasn't been graded.
Request
Responses
- 200
- 401
- 403
- 404
- 500
The grade, feedback, and updatedAt (grade/feedback null if ungraded).
Not signed in.
Not the student themselves, course staff, or a system admin.
Problem not found in this assignment/course.
Server error.