get_discussion_entry_details
Retrieve comprehensive details for a individual discussion entry within a Canvas course, including its content and all associated replies when specified.
Instructions
Get detailed information about a specific discussion entry including all its replies.
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
include_replies: Whether to fetch and include replies (default: True)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
entry_id | Yes | ||
include_replies | No | ||
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"
},
"include_replies": {
"default": true,
"title": "Include Replies",
"type": "boolean"
},
"topic_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Topic Id"
}
},
"required": [
"course_identifier",
"topic_id",
"entry_id"
],
"type": "object"
}