Force on 'Automatically apply grade for missing submissions'?

Jump to solution
thatcher_bohrma
Community Participant

Hello Canvas Community,

Is there a setting to enable "Automatically apply grade for missing submissions" in the Gradebook settings, or do we have to do some tricky programming to force that on for all courses by default? We would also like to set the automatic grade to "0".

Thank you!

Labels (1)
0 Likes
2 Solutions
BrianLester
Community Contributor

This is not settable at account level - click the grading tab in the account and you'll see it's not an option.

This needs to be set at course level (and teachers could change it back...)

Chat GTP could probably create the code you need in python

You would need to loop through all courses setting

"missing_submission_deduction_enabled": true,

"missing_submission_deduction": 100,  at the API endpoint 

https://{Your Canvas url}/api/v1/courses/{course_id}/late_policy

 

View solution in original post

Sorry, adding this to previous reply - you'd need to begin by switching late_policies to off in all courses - otherwise attempts to adjust it via the API would get a bad response. Additionally per day / week deductions would need to be uniform

View solution in original post