workflowy_update_node
Modify existing WorkFlowy nodes by updating their name, note content, layout mode, or completion status to maintain organized outlines and task lists.
Instructions
Update an existing WorkFlowy node
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| node_id | Yes | ||
| name | No | ||
| note | No | ||
| layout_mode | No | ||
| _completed | No |
Input Schema (JSON Schema)
{
"properties": {
"_completed": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null
},
"layout_mode": {
"anyOf": [
{
"enum": [
"bullets",
"todo",
"h1",
"h2",
"h3"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"node_id": {
"type": "string"
},
"note": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"required": [
"node_id"
],
"type": "object"
}