create_doc
Create a Doc in a ClickUp Workspace, optionally nested under a Space, Folder, or List with Public or Private visibility. Returns the new Doc's ID.
Instructions
Create a new Doc in a Workspace (ClickUp Docs v3), optionally nested under a Space/Folder/List and with a visibility setting. Returns the created Doc with its id. Add pages afterwards with create_doc_page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| team_id | No | Team/Workspace ID. Falls back to CLICKUP_TEAM_ID when omitted. | |
| name | Yes | Title of the new Doc. | |
| parent | No | Where to place the Doc. Omit to create it at the Workspace level. | |
| visibility | No | Doc visibility. PUBLIC = visible to the Workspace, PRIVATE = only you. | |
| create_page | No | If true (default), create an initial empty page in the Doc. |