canvas_get_syllabus
Retrieve course syllabus from Canvas LMS by inputting the course ID, enabling efficient access to course details and materials.
Instructions
Get course syllabus
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"
}