get_submission_rubric_assessment
Retrieve rubric assessment scores for a specific student's assignment submission in Canvas by providing course, assignment, and user identifiers.
Instructions
Get rubric assessment scores for a specific submission.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
assignment_id: The Canvas assignment ID
user_id: The Canvas user ID of the student
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignment_id | Yes | ||
course_identifier | Yes | ||
user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"assignment_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Assignment Id"
},
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"user_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "User Id"
}
},
"required": [
"course_identifier",
"assignment_id",
"user_id"
],
"type": "object"
}