workflowy_create_node
Create new outline nodes in WorkFlowy with customizable properties like name, parent hierarchy, notes, layout modes, and completion status for organizing tasks and information.
Instructions
Create a new node in WorkFlowy
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| parent_id | No | ||
| note | No | ||
| layout_mode | No | ||
| position | No | top | |
| _completed | No |
Input Schema (JSON Schema)
{
"properties": {
"_completed": {
"default": false,
"type": "boolean"
},
"layout_mode": {
"anyOf": [
{
"enum": [
"bullets",
"todo",
"h1",
"h2",
"h3"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"name": {
"type": "string"
},
"note": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"parent_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"position": {
"default": "top",
"enum": [
"top",
"bottom"
],
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}