set_node_position
Position nodes within n8n workflows by specifying exact coordinates to organize workflow layouts and improve visual structure.
Instructions
Set the position of a node in an n8n workflow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nodeId | Yes | ||
| workflowId | Yes | ||
| x | Yes | ||
| y | Yes |
Input Schema (JSON Schema)
{
"properties": {
"nodeId": {
"type": "string"
},
"workflowId": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"x": {
"type": "number"
},
"y": {
"type": "number"
}
},
"required": [
"workflowId",
"nodeId",
"x",
"y"
],
"type": "object"
}