get_peer_review_followup_list
Generate a prioritized list of students needing instructor follow-up for peer review assignments in Canvas, filtering by urgency level and including contact information.
Instructions
Get prioritized list of students requiring instructor follow-up based on peer review completion status.
Args:
course_identifier: Canvas course code (e.g., badm_554_120251_246794) or ID
assignment_id: Canvas assignment ID
priority_filter: Priority filter (urgent, medium, low, all)
include_contact_info: Include email addresses if available
days_threshold: Days since assignment for urgency calculation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignment_id | Yes | ||
course_identifier | Yes | ||
days_threshold | No | ||
include_contact_info | No | ||
priority_filter | No | all |
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"
},
"days_threshold": {
"default": 3,
"title": "Days Threshold",
"type": "integer"
},
"include_contact_info": {
"default": false,
"title": "Include Contact Info",
"type": "boolean"
},
"priority_filter": {
"default": "all",
"title": "Priority Filter",
"type": "string"
}
},
"required": [
"course_identifier",
"assignment_id"
],
"type": "object"
}