list_discussion_entries
Retrieve discussion posts for a specific Canvas course topic, with options to include full content and replies for comprehensive thread viewing.
Instructions
List discussion entries (posts) for a specific discussion topic with optional full content and replies.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
topic_id: The Canvas discussion topic ID
include_full_content: Whether to fetch full content for each entry (default: False)
include_replies: Whether to fetch replies for each entry (default: False)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
include_full_content | No | ||
include_replies | No | ||
topic_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"include_full_content": {
"default": false,
"title": "Include Full Content",
"type": "boolean"
},
"include_replies": {
"default": false,
"title": "Include Replies",
"type": "boolean"
},
"topic_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Topic Id"
}
},
"required": [
"course_identifier",
"topic_id"
],
"type": "object"
}