clickup_doc_add_page
Add a new page to a ClickUp document with markdown content, optional subtitle, and hierarchical nesting capabilities for organized documentation.
Instructions
Create a new page inside an existing ClickUp doc. Pages support a markdown body plus optional subtitle. Supply parent_page_id to nest the page under another page (creates a page tree). Returns the created page object including its new id, which you can pass to clickup_doc_edit_page or clickup_doc_get_page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | No | Initial body of the page in ClickUp-flavoured markdown. Omit to create an empty page you can populate later via clickup_doc_edit_page. | |
| doc_id | Yes | ID of the parent doc. Obtain from clickup_doc_list (field: id). | |
| name | Yes | Title shown in the doc's left-hand page navigator. | |
| parent_page_id | No | ID of a sibling page to nest this page under. Omit to create a top-level page. Obtain from clickup_doc_pages (field: id). | |
| sub_title | No | Optional subtitle rendered under the page title. | |
| team_id | No | Workspace (team) ID. Omit to use the default workspace from config. |