I have a Python program that gets all quizzes from a course and for each quiz, it gets all submissions for that quiz. After that, gets all attempts for each submission. It is a triply nested for loop.
I would like to have an API call that knowing the course_id, quiz_id, user_id, could get all submissions for that quiz for that user.
Something similar to what we have for the assignments.
GET /api/v1/courses/:course_id/assignments/:assignment_id/submissions/:user_id
Thanks in advance.