What If Grades
A Grade object looks like:
{
// The grade for the course
"grade": 120.0,
// The total points earned in the course
"total": 24.0,
// The total points possible for the course
"possible": 20.0,
// The dropped grades for the course
"dropped": []
}An AssignmentGroupGrade object looks like:
{
// The ID of the Assignment Group
"id": 123,
// The global ID of the Assignment Group
"global_id": 10000000000001,
// The score for the Assignment Group
"score": 20.0,
// The total points possible for the Assignment Group
"possible": 10.0,
// The weight for the Assignment Group
"weight": 0.0,
// The grade for the Assignment Group
"grade": 200.0,
// The dropped grades for the Assignment Group
"dropped": []
}A GradeGroup object looks like:
A Grades object looks like:
A Submission object looks like:
PUT /api/v1/submissions/:id/what_if_grades
PUT /api/v1/submissions/:id/what_if_gradesRequest Parameters:
Parameter
Type
Description
Example Response:
PUT /api/v1/courses/:course_id/what_if_grades/reset
PUT /api/v1/courses/:course_id/what_if_grades/resetLast updated
Was this helpful?