name: flowise-variables description: | Manage Flowise runtime variables. Variables provide named, optionally encrypted values (such as API keys or environment-style settings) that chatflows and agentflows can reference at runtime. provider: flowise api: flowise authentication: type: bearer baseUrl: http://localhost:3000/api/v1 operations: - id: list-variables method: GET path: /variables summary: List all variables - id: create-variable method: POST path: /variables summary: Create a new variable - id: update-variable method: PUT path: /variables/{id} summary: Update a variable by ID - id: delete-variable method: DELETE path: /variables/{id} summary: Delete a variable by ID tags: - Variables - Configuration