Quiz Submissions
Quiz Submissions API
{
// The ID of the quiz submission.
"id": 1,
// The ID of the Quiz the quiz submission belongs to.
"quiz_id": 2,
// The ID of the Student that made the quiz submission.
"user_id": 3,
// The ID of the Submission the quiz submission represents.
"submission_id": 1,
// The time at which the student started the quiz submission.
"started_at": "2013-11-07T13:16:18Z",
// The time at which the student submitted the quiz submission.
"finished_at": "2013-11-07T13:16:18Z",
// The time at which the quiz submission will be overdue, and be flagged as a
// late submission.
"end_at": "2013-11-07T13:16:18Z",
// For quizzes that allow multiple attempts, this field specifies the quiz
// submission attempt number.
"attempt": 3,
// Number of times the student was allowed to re-take the quiz over the
// multiple-attempt limit.
"extra_attempts": 1,
// Amount of extra time allowed for the quiz submission, in minutes.
"extra_time": 60,
// The student can take the quiz even if it's locked for everyone else
"manually_unlocked": true,
// Amount of time spent, in seconds.
"time_spent": 300,
// The score of the quiz submission, if graded.
"score": 3,
// The original score of the quiz submission prior to any re-grading.
"score_before_regrade": 2,
// For quizzes that allow multiple attempts, this is the score that will be
// used, which might be the score of the latest, or the highest, quiz
// submission.
"kept_score": 5,
// Number of points the quiz submission's score was fudged by.
"fudge_points": 1,
// Whether the student has viewed their results to the quiz.
"has_seen_results": true,
// The current state of the quiz submission. Possible values:
// ['untaken'|'pending_review'|'complete'|'settings_only'|'preview'].
"workflow_state": "untaken",
// Indicates whether the quiz submission is overdue and needs submission
"overdue_and_needs_submission": false
}Parameter
Type
Description
Parameter
Type
Description
Parameter
Type
Description
Parameter
Type
Description
Parameter
Type
Description
Parameter
Type
Description
Appendixes
Appendix: Manual Scoring
More example requests
Last updated
Was this helpful?