Indeed, it would be nice to have this feature built in to the UI.
Another solution is to use the API to automate this process.
First use Quiz Submissions API to get all submissions, which includes submission id and latest attempt:
GET {LMS_URL}/courses/{COURSE_ID}/quizzes/{QUIZ_ID}/submissions?per_page=100
Then use Quiz Submissions API to add fudge points to each submission:
PUT '{LMS_URL}/courses/{COURSE_ID}/quizzes/{QUIZ_ID}/submissions/{submission_id}'
{
'quiz_submissions[][attempt]': attempt,
'quiz_submissions[][fudge_points]': 1
}
---
You can also backup quiz responses if the quiz is attached to an assignment:
GET {LMS_URL}/courses/{COURSE_ID}/assignments/{ASSIGNMENT_ID}/submissions?per_page=100&include[]=submission_history
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.