Skip to main content
Update the content of an existing Confluence page (uses v2 API; version.number must be current+1)

Tool details

FieldValue
Nameconfluence__update_page
GroupIntegrations

Playground

Input schema

Input schema
{
  "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."
}

Output schema

This tool does not publish an output schema.