canvas_get_upcoming_assignments
Retrieve upcoming assignment due dates from Canvas LMS. Specify a limit to control the number of assignments returned, helping users stay organized and manage deadlines effectively.
Instructions
Get upcoming assignment due dates
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of assignments to return |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of assignments to return",
"type": "number"
}
},
"required": [],
"type": "object"
}