delete_node
Remove a node from an n8n workflow by specifying the workflow ID and node ID to modify workflow structure.
Instructions
Delete a node from an n8n workflow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nodeId | Yes | ||
| workflowId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"nodeId": {
"type": "string"
},
"workflowId": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"required": [
"workflowId",
"nodeId"
],
"type": "object"
}