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