{ "opencollection": "1.0.0", "info": { "name": "Flowise APIs assistants chatflows API", "version": "1.0.0" }, "items": [ { "info": { "name": "chatflows", "type": "folder" }, "items": [ { "info": { "name": "List all chatflows", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:3000/api/v1/chatflows", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve a list of all chatflows" }, { "info": { "name": "Create a new chatflow", "type": "http" }, "http": { "method": "POST", "url": "http://localhost:3000/api/v1/chatflows", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new chatflow with the provided details" }, { "info": { "name": "Get chatflow by ID", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:3000/api/v1/chatflows/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Chatflow ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve a specific chatflow by ID" }, { "info": { "name": "Update chatflow details", "type": "http" }, "http": { "method": "PUT", "url": "http://localhost:3000/api/v1/chatflows/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Chatflow ID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update the details of an existing chatflow" }, { "info": { "name": "Delete a chatflow", "type": "http" }, "http": { "method": "DELETE", "url": "http://localhost:3000/api/v1/chatflows/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Chatflow ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete a chatflow by ID" }, { "info": { "name": "Get chatflow by API key", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:3000/api/v1/chatflows/apikey/:apikey", "params": [ { "name": "apikey", "value": "", "type": "path", "description": "API key associated with the chatflow" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve a chatflow using an API key" } ] } ], "bundled": true }