get_course_details
Retrieve comprehensive course information from Canvas LMS using a course code or ID to access details like assignments, materials, and announcements.
Instructions
Get detailed information about a specific course.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
}
},
"required": [
"course_identifier"
],
"type": "object"
}