update_doc_page
Modify a Doc page's title, subtitle, or content. Use replace, append, or prepend modes to alter existing content.
Instructions
Update a Doc page's title, subtitle or content (ClickUp Docs v3). Use content_edit_mode to replace, append to, or prepend the existing content. Only the provided fields change. Returns the updated page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| team_id | No | Team/Workspace ID. Falls back to CLICKUP_TEAM_ID when omitted. | |
| doc_id | Yes | ID of the Doc the page belongs to. | |
| page_id | Yes | ID of the page to update. | |
| name | No | New page title. Omit to keep current. | |
| sub_title | No | New subtitle. Omit to keep current. | |
| content | No | Content to apply, combined with `content_edit_mode`. | |
| content_format | No | Format of the `content` field: 'text/md' (default) or 'text/html'. | |
| content_edit_mode | No | How `content` is applied: 'replace' (default) overwrites, 'append' adds to the end, 'prepend' adds to the start. |