send_peer_review_reminders
Send automated reminders to students who need to complete peer reviews for Canvas assignments, with options for custom messages and assignment links.
Instructions
Send peer review completion reminders to specific students.
Args:
course_identifier: Canvas course ID
assignment_id: Canvas assignment ID for peer review
recipient_ids: List of Canvas user IDs needing reminders
custom_message: Optional custom message (uses default template if None)
include_assignment_link: Whether to include direct link to assignment
subject_prefix: Prefix for message subject
Returns:
Dict with sending results and any failures
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignment_id | Yes | ||
course_identifier | Yes | ||
custom_message | No | ||
include_assignment_link | No | ||
recipient_ids | Yes | ||
subject_prefix | No | Peer Review Reminder |
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"
},
"custom_message": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Custom Message"
},
"include_assignment_link": {
"default": true,
"title": "Include Assignment Link",
"type": "boolean"
},
"recipient_ids": {
"items": {
"type": "string"
},
"title": "Recipient Ids",
"type": "array"
},
"subject_prefix": {
"default": "Peer Review Reminder",
"title": "Subject Prefix",
"type": "string"
}
},
"required": [
"course_identifier",
"assignment_id",
"recipient_ids"
],
"type": "object"
}