reply_to_discussion_entry
Post responses to student comments in Canvas discussion threads by specifying the course, topic, entry ID, and reply content.
Instructions
Reply to a student's discussion entry/comment.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
topic_id: The Canvas discussion topic ID
entry_id: The Canvas discussion entry ID to reply to
message: The reply message content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
entry_id | Yes | ||
message | Yes | ||
topic_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"entry_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Entry Id"
},
"message": {
"title": "Message",
"type": "string"
},
"topic_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Topic Id"
}
},
"required": [
"course_identifier",
"topic_id",
"entry_id",
"message"
],
"type": "object"
}