get_discussion_topic_details
Retrieve detailed information about a specific discussion topic in a Canvas course by providing the course identifier and topic ID.
Instructions
Get detailed information about a specific discussion topic.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
topic_id: The Canvas discussion topic ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
topic_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"topic_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Topic Id"
}
},
"required": [
"course_identifier",
"topic_id"
],
"type": "object"
}