Tool details
Playground
Input schema
input-schema.json
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Update the content of an existing Confluence page (uses v2 API; version.number must be current+1)
| Field | Value |
|---|---|
| Name | confluence__update_page |
| Group | Integrations |
{
"type": "object",
"properties": {
"cloudId": {
"type": "string",
"description": "Atlassian cloud ID from accessible-resources"
},
"pageId": {
"type": "string",
"description": "Confluence page ID"
},
"id": {
"type": "string",
"description": "Page ID (must match pageId path param)"
},
"status": {
"type": "string",
"description": "Page status"
},
"title": {
"type": "string",
"description": "New page title (omit to keep existing)"
},
"version": {
"type": "object",
"description": "Version object; number must be current version + 1"
},
"body": {
"type": "object",
"description": "Updated body, e.g. {representation: 'storage', value: '<p>...</p>'}"
}
},
"required": [
"cloudId",
"pageId",
"id",
"version"
],
"description": "Input schema for the confluence__update_page tool."
}