clickup_create_doc
Create new documents in ClickUp workspaces with specified parent locations and visibility settings to organize project documentation.
Instructions
Create a new doc in ClickUp
Input Schema
Name | Required | Description | Default |
---|---|---|---|
create_page | No | Whether to create a initial page (false by default) | |
name | Yes | The name of the new Doc | |
parent | Yes | Parent object | |
visibility | No | Doc visibility (PUBLIC or PRIVATE), PRIVATE by default |
Input Schema (JSON Schema)
{
"properties": {
"create_page": {
"description": "Whether to create a initial page (false by default)",
"type": "boolean"
},
"name": {
"description": "The name of the new Doc",
"type": "string"
},
"parent": {
"additionalProperties": false,
"description": "Parent object",
"properties": {
"id": {
"description": "Parent ID",
"type": "string"
},
"type": {
"description": "Parent type: 4 for Space, 5 for Folder, 6 for List, 7 for Everything, 12 for Workspace",
"type": "number"
}
},
"required": [
"id",
"type"
],
"type": "object"
},
"visibility": {
"description": "Doc visibility (PUBLIC or PRIVATE), PRIVATE by default",
"type": "string"
}
},
"required": [
"name",
"parent"
],
"type": "object"
}