get_page_content
Retrieve the complete content body of a specific page from a Canvas course using either the course code or ID and page URL or identifier.
Instructions
Get the full content body of a specific page.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
page_url_or_id: The page URL or page ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
page_url_or_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"page_url_or_id": {
"title": "Page Url Or Id",
"type": "string"
}
},
"required": [
"course_identifier",
"page_url_or_id"
],
"type": "object"
}