canvas_list_assignments
Retrieve and organize course assignments from the Canvas LMS, including optional submission data, by specifying the course ID for streamlined management.
Instructions
List assignments for a course
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_id | Yes | ID of the course | |
include_submissions | No | Include submission data |
Input Schema (JSON Schema)
{
"properties": {
"course_id": {
"description": "ID of the course",
"type": "number"
},
"include_submissions": {
"description": "Include submission data",
"type": "boolean"
}
},
"required": [
"course_id"
],
"type": "object"
}