update_node
Modify existing nodes within n8n workflows by updating parameters, credentials, names, or type versions to adapt workflow functionality as needed.
Instructions
Update an existing node in an n8n workflow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| credentials | No | ||
| name | No | ||
| nodeId | Yes | ||
| params | No | ||
| typeVersion | No | ||
| workflowId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"credentials": {
"type": "object"
},
"name": {
"type": "string"
},
"nodeId": {
"type": "string"
},
"params": {
"type": "object"
},
"typeVersion": {
"type": "number"
},
"workflowId": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"required": [
"workflowId",
"nodeId"
],
"type": "object"
}