create_page
Create a new page in a Canvas course with custom HTML content, publishing options, and editing permissions for course materials.
Instructions
Create a new page in a Canvas course.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
title: The title of the new page
body: The HTML content for the page
published: Whether the page should be published (default: True)
front_page: Whether this should be the course front page (default: False)
editing_roles: Who can edit the page (default: "teachers")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
course_identifier | Yes | ||
editing_roles | No | teachers | |
front_page | No | ||
published | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"title": "Body",
"type": "string"
},
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"editing_roles": {
"default": "teachers",
"title": "Editing Roles",
"type": "string"
},
"front_page": {
"default": false,
"title": "Front Page",
"type": "boolean"
},
"published": {
"default": true,
"title": "Published",
"type": "boolean"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"course_identifier",
"title",
"body"
],
"type": "object"
}