update_variable
Modify existing variable values in n8n workflows to adapt workflow behavior and maintain data consistency across automated processes.
Instructions
Update an existing variable value
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| value | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"id",
"value"
],
"type": "object"
}