list_courses
Retrieve a list of Canvas LMS courses for the authenticated user, with options to include concluded courses or all available courses.
Instructions
List courses for the authenticated user.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_all | No | ||
| include_concluded | No |
Input Schema (JSON Schema)
{
"properties": {
"include_all": {
"default": false,
"title": "Include All",
"type": "boolean"
},
"include_concluded": {
"default": false,
"title": "Include Concluded",
"type": "boolean"
}
},
"type": "object"
}