clickup_doc_create
Create a new ClickUp document in your workspace, optionally organizing it under spaces, folders, lists, or tasks to structure project documentation.
Instructions
Create a new ClickUp doc in a workspace. The doc starts with no pages — add pages via clickup_doc_add_page. Optionally attach the doc under a parent space/folder/list/task instead of the workspace root. Returns the created doc object including its new id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Display name for the doc (shown in the doc tree). | |
| parent | No | Optional parent object to attach the doc under. Shape: { 'id': '<id>', 'type': <int> } where type is 4=space, 5=folder, 6=list, 7=task. Omit to create at the workspace root. | |
| team_id | No | Workspace (team) ID. Obtain from clickup_workspace_list (field: id). Omit to use the default workspace from config. |