clickup_doc_edit_page
Edit a page in a ClickUp doc: rename, rewrite content, or append/prepend new text to the existing body. Returns the updated page object.
Instructions
Rename or rewrite an existing page inside a ClickUp doc. By default the supplied content replaces the current page body. Pass mode='append' or mode='prepend' to merge with the existing body instead. For a fresh page use clickup_doc_add_page instead. Returns the updated page object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | No | New page body in ClickUp-flavoured markdown. Replaces the existing body unless mode is set. Omit to leave content unchanged. | |
| doc_id | Yes | ID of the parent doc. Obtain from clickup_doc_list (field: id). | |
| mode | No | How to combine content with the existing body: 'replace' (default), 'append', or 'prepend'. Sent as content_edit_mode on the wire. | |
| name | No | New page title. Omit to keep current title. | |
| page_id | Yes | ID of the page to edit. Obtain from clickup_doc_pages (field: id). | |
| team_id | No | Workspace (team) ID. Obtain from clickup_workspace_list (field: id). Omit to use the default workspace from config. |