canvas_mark_module_item_complete
Mark a specific module item as complete within Canvas LMS by specifying course, module, and item IDs.
Instructions
Mark a module item as complete
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"
}