clickup_create_page
Create a new page in a ClickUp document by specifying the document ID, page name, and content in markdown format, with options for subtitle and parent page.
Instructions
Create a new page in a ClickUp doc
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Page content in markdown format | |
doc_id | Yes | ClickUp doc ID | |
name | Yes | Page name | |
parent_page_id | No | Parent page ID (null for root page) | |
sub_title | No | Page subtitle |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Page content in markdown format",
"type": "string"
},
"doc_id": {
"description": "ClickUp doc ID",
"type": "string"
},
"name": {
"description": "Page name",
"type": "string"
},
"parent_page_id": {
"description": "Parent page ID (null for root page)",
"type": "string"
},
"sub_title": {
"description": "Page subtitle",
"type": "string"
}
},
"required": [
"doc_id",
"name",
"content"
],
"type": "object"
}