get_peer_review_completion_analytics
Analyze peer review completion rates for Canvas assignments with student-by-student breakdown and summary statistics to track participation and identify students needing follow-up.
Instructions
Get detailed analytics on peer review completion rates with student-by-student breakdown and summary statistics.
Args:
course_identifier: Canvas course code (e.g., badm_554_120251_246794) or ID
assignment_id: Canvas assignment ID
include_student_details: Include per-student breakdown
group_by_status: Group students by completion status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignment_id | Yes | ||
course_identifier | Yes | ||
group_by_status | No | ||
include_student_details | No |
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"
},
"group_by_status": {
"default": true,
"title": "Group By Status",
"type": "boolean"
},
"include_student_details": {
"default": true,
"title": "Include Student Details",
"type": "boolean"
}
},
"required": [
"course_identifier",
"assignment_id"
],
"type": "object"
}