Sharebar?

Assignment and Grade Service: How to support a Drop/Withdraw update?

Assignment and Grade Service: How to support a Drop/Withdraw update?

Tool Use Case: Provide a tool that an instructor can use to sync the Platform scores with the scores that the Tool tracks. The tool will only be responsible to return a single course grade (line item) as it is becomes available at the end of the course.

To support the use case, the Tool can check it's own student status to determine if a final grade is available. It can use the Assignment and Grade Service to create and return a single line item indicating the status of the final student grade. This works fine as the Tool can return proper values in the Score endpoint for "activityProgress" and "gradeProgress."

Issue: When the instructor executes the Tool to update the Platform scores, if a student has withdrawn (drop) from a course, there doesn't appear to be suitable return Score properties for "activityProgress" and "gradeProgress." Any thoughts on this?

"activityProgress" and "gradeProgress"

Hi,

Hi,

 

To reset a grade just send no score value with not started statuses:

{

"activityProgress": "Initialized",

"gradingProgress":"NotReady"

"userId":"...",

"timestamp":"..."

}

 

Claude