canvas_get_discussion_topic
Retrieve detailed information about a specific discussion topic in a Canvas course by providing the course ID and topic ID.
Instructions
Get details of a specific discussion topic
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_id | Yes | ID of the course | |
topic_id | Yes | ID of the discussion topic |
Input Schema (JSON Schema)
{
"properties": {
"course_id": {
"description": "ID of the course",
"type": "number"
},
"topic_id": {
"description": "ID of the discussion topic",
"type": "number"
}
},
"required": [
"course_id",
"topic_id"
],
"type": "object"
}