Bulk Update Gradebook Column Issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2023
04:26 AM
If we make the PUT API call(https://XX.instructure.com/api/v1/courses/891/custom_gradebook_column_data) with the below request
{
"column_data": [
{
"column_id": "214",
"user_id": 506,
"content": "PRESENT"
}
]
}
We are getting the below exception: 403 Forbidden: "{"status":"unauthorized","errors":[{"message":"user not authorized to perform that action"}]}"]
If we change the role of the user(506) from teacher to Student then it will work. Any Inputs here.
Note: I have created the token in the User profile.
Solved! Go to Solution.
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2023
10:26 PM
Users with "Teacher" role in a course will not show up in the Gradebook, so the custom column doesn't exist, that's why you are getting that error message.