edit_page_content
Update HTML content and title for specific pages in Canvas courses using course identifiers and page references to modify learning materials.
Instructions
Edit the content 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
new_content: The new HTML content for the page
title: Optional new title for the page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
new_content | Yes | ||
page_url_or_id | Yes | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"new_content": {
"title": "New Content",
"type": "string"
},
"page_url_or_id": {
"title": "Page Url Or Id",
"type": "string"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Title"
}
},
"required": [
"course_identifier",
"page_url_or_id",
"new_content"
],
"type": "object"
}