post_discussion_entry
Post a new top-level discussion entry to a Canvas course topic by providing the course identifier, topic ID, and message content.
Instructions
Post a new top-level entry to a discussion topic.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
topic_id: The Canvas discussion topic ID
message: The entry message content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
message | Yes | ||
topic_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"message": {
"title": "Message",
"type": "string"
},
"topic_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Topic Id"
}
},
"required": [
"course_identifier",
"topic_id",
"message"
],
"type": "object"
}