Grade not being updated by canvas submissions API
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2020
02:14 AM
Hello fellow developers!
I am trying to upload grades to Canvas using the Submissions API. More specifically, I'm using this from the submissions API:
PUT /api/v1/courses/:course_id/assignments/:assignment_id/submissions/:user_id
I try submitting a put request to the following URL:
'https://canvas.cornell.edu/api/v1/courses/' + courseID + '/assignments/' + assignmentID + '/submissions/' + submissionID
I'm trying to do this via Postman. While I'm getting a 200 ok response, the grade isn't being updated. Here's how I'm sending my request:
The initial grade was 10.0, and I'm trying to update the grade to 45.67. But... It isn't working
Could you help me out, please?