canvas_get_module_item
Retrieve detailed information about a specific module item in a Canvas course by providing the course, module, and item IDs. Facilitates precise module management and content organization in the Learning Management System.
Instructions
Get details of a specific module item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_id | Yes | ID of the course | |
item_id | Yes | ID of the module item | |
module_id | Yes | ID of the module |
Input Schema (JSON Schema)
{
"properties": {
"course_id": {
"description": "ID of the course",
"type": "number"
},
"item_id": {
"description": "ID of the module item",
"type": "number"
},
"module_id": {
"description": "ID of the module",
"type": "number"
}
},
"required": [
"course_id",
"module_id",
"item_id"
],
"type": "object"
}