canvas_get_course_grades
Retrieve course grades by providing the course ID, enabling easy access to student performance data within the Canvas Learning Management System.
Instructions
Get grades for a course
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_id | Yes | ID of the course |
Input Schema (JSON Schema)
{
"properties": {
"course_id": {
"description": "ID of the course",
"type": "number"
}
},
"required": [
"course_id"
],
"type": "object"
}