canvas_list_folders
Retrieve and list all folders within a specific course using the Canvas LMS API. Ideal for organizing and managing course content efficiently.
Instructions
List folders in a course
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_id | Yes | ID of the course |
Input Schema (JSON Schema)
{
"properties": {
"course_id": {
"description": "ID of the course",
"type": "number"
}
},
"required": [
"course_id"
],
"type": "object"
}