update_page_content
Modify Confluence page content by updating HTML and optionally changing the title using the page ID. Simplify content management within Confluence workspaces.
Instructions
Update the content of a Confluence page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | HTML content to update the page with | |
pageId | Yes | Confluence Page ID | |
title | No | Page title (optional, if you want to change it) |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "HTML content to update the page with",
"type": "string"
},
"pageId": {
"description": "Confluence Page ID",
"type": "string"
},
"title": {
"description": "Page title (optional, if you want to change it)",
"type": "string"
}
},
"required": [
"pageId",
"content"
],
"type": "object"
}