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