Force on 'Automatically apply grade for missing submissions'?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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