canvas_list_calendar_events
Retrieve calendar events from the Canvas LMS within a specified date range to organize and manage schedules effectively. Input start and end dates in ISO format for streamlined event tracking.
Instructions
List calendar events
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | End date (ISO format) | |
start_date | No | Start date (ISO format) |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "End date (ISO format)",
"type": "string"
},
"start_date": {
"description": "Start date (ISO format)",
"type": "string"
}
},
"required": [],
"type": "object"
}