clickup_edit_page
Update ClickUp document pages by modifying names, subtitles, or markdown content using replace, append, or prepend modes.
Instructions
Edit a page in a ClickUp doc
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | Page content in markdown format | |
content_edit_mode | No | Content edit mode (replace, append, prepend), default is replace | |
doc_id | Yes | ClickUp doc ID | |
name | No | Page name | |
page_id | Yes | ClickUp page ID | |
sub_title | No | Page subtitle |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Page content in markdown format",
"type": "string"
},
"content_edit_mode": {
"description": "Content edit mode (replace, append, prepend), default is replace",
"type": "string"
},
"doc_id": {
"description": "ClickUp doc ID",
"type": "string"
},
"name": {
"description": "Page name",
"type": "string"
},
"page_id": {
"description": "ClickUp page ID",
"type": "string"
},
"sub_title": {
"description": "Page subtitle",
"type": "string"
}
},
"required": [
"doc_id",
"page_id"
],
"type": "object"
}