I am brand new to the canvas api, but not apis. This is not supposed to be hard, but I am stumped again. I am trying to create a custom grade book column. Here is the url I am trying to use on a POST
https://{my institution}.test.instructure.com/api/v1/courses/{my course id}/custom_gradebook_columns
Here is the json I am posting
Solved! Go to Solution.
Hi,
you must include the "column" key in the json, like this:
{
"column": {
"title": "StudentsEmployees",
"read_only": true
}
}
Hi,
you must include the "column" key in the json, like this:
{
"column": {
"title": "StudentsEmployees",
"read_only": true
}
}
Duh it was exactly as the error message was telling me. Thank you so much. I really appreciate it.