List my submissions for a problem (client)
GET/api/client/v1/submissions
The caller's own submission history for one problem (attempt list), newest first, so the client can show past attempts and drill into any one's result via GET /submissions/{id}. Scoped to the token's user, so it never exposes anyone else's work.
Request
Responses
- 200
- 400
- 401
- 403
- 404
- 500
The caller's attempts for the problem, newest first.
Missing assignmentId or problemId.
Missing or invalid token.
Not enrolled in the course.
Assignment not found, unpublished, or the problem is not linked to it.
Server error.