canvas_get_assignment
Retrieve detailed information about a specific assignment from the Canvas LMS, including optional submission data, by providing course and assignment IDs.
Instructions
Get detailed information about a specific assignment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignment_id | Yes | ID of the assignment | |
course_id | Yes | ID of the course | |
include_submission | No | Include user's submission data |
Input Schema (JSON Schema)
{
"properties": {
"assignment_id": {
"description": "ID of the assignment",
"type": "number"
},
"course_id": {
"description": "ID of the course",
"type": "number"
},
"include_submission": {
"description": "Include user's submission data",
"type": "boolean"
}
},
"required": [
"course_id",
"assignment_id"
],
"type": "object"
}