{ "opencollection": "1.0.0", "info": { "name": "Flowise APIs assistants variables API", "version": "1.0.0" }, "items": [ { "info": { "name": "variables", "type": "folder" }, "items": [ { "info": { "name": "List all variables", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:3000/api/v1/variables", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve a list of all variables" }, { "info": { "name": "Create a new variable", "type": "http" }, "http": { "method": "POST", "url": "http://localhost:3000/api/v1/variables", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new variable" }, { "info": { "name": "Update a variable by ID", "type": "http" }, "http": { "method": "PUT", "url": "http://localhost:3000/api/v1/variables/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Variable ID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update a specific variable by ID" }, { "info": { "name": "Delete a variable by ID", "type": "http" }, "http": { "method": "DELETE", "url": "http://localhost:3000/api/v1/variables/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Variable ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete a specific variable by ID" } ] } ], "bundled": true }