create_variable
Create a new variable in n8n workflows by providing a unique key and value, enabling dynamic data storage and management for workflow automation.
Instructions
Create a new variable (requires unique key)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | ||
value | Yes |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"key",
"value"
],
"type": "object"
}