canvas_get_page
Retrieve the content of a specific page from a Canvas course using the course ID and page URL slug. Simplify access to Canvas LMS course materials.
Instructions
Get content of a specific page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_id | Yes | ID of the course | |
page_url | Yes | URL slug of the page |
Input Schema (JSON Schema)
{
"properties": {
"course_id": {
"description": "ID of the course",
"type": "number"
},
"page_url": {
"description": "URL slug of the page",
"type": "string"
}
},
"required": [
"course_id",
"page_url"
],
"type": "object"
}