canvas_get_submission
Retrieve submission details for a specific assignment in a Canvas course by providing course ID, assignment ID, and optional user ID.
Instructions
Get submission details for an assignment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignment_id | Yes | ID of the assignment | |
course_id | Yes | ID of the course | |
user_id | No | ID of the user (optional, defaults to self) |
Input Schema (JSON Schema)
{
"properties": {
"assignment_id": {
"description": "ID of the assignment",
"type": "number"
},
"course_id": {
"description": "ID of the course",
"type": "number"
},
"user_id": {
"description": "ID of the user (optional, defaults to self)",
"type": "number"
}
},
"required": [
"course_id",
"assignment_id"
],
"type": "object"
}