list_module_items
Retrieve all items within a Canvas course module, including pages and optional content details, to view and manage module contents.
Instructions
List items within a specific module, including pages.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
module_id: The module ID
include_content_details: Whether to include additional details about content items
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
include_content_details | No | ||
module_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"include_content_details": {
"default": true,
"title": "Include Content Details",
"type": "boolean"
},
"module_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Module Id"
}
},
"required": [
"course_identifier",
"module_id"
],
"type": "object"
}