get_course_content_overview
Retrieve a structured overview of Canvas course content including pages, modules, and syllabus information to quickly understand course structure and materials.
Instructions
Get a comprehensive overview of course content including pages, modules, and syllabus.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
include_pages: Whether to include pages information
include_modules: Whether to include modules and their items
include_syllabus: Whether to include syllabus content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
include_modules | No | ||
include_pages | No | ||
include_syllabus | No |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"include_modules": {
"default": true,
"title": "Include Modules",
"type": "boolean"
},
"include_pages": {
"default": true,
"title": "Include Pages",
"type": "boolean"
},
"include_syllabus": {
"default": true,
"title": "Include Syllabus",
"type": "boolean"
}
},
"required": [
"course_identifier"
],
"type": "object"
}