{ "opencollection": "1.0.0", "info": { "name": "Flowise APIs assistants feedback API", "version": "1.0.0" }, "items": [ { "info": { "name": "feedback", "type": "folder" }, "items": [ { "info": { "name": "Create new chat message feedback", "type": "http" }, "http": { "method": "POST", "url": "http://localhost:3000/api/v1/feedback", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create new feedback for a specific chat flow." }, { "info": { "name": "List all chat message feedbacks for a chatflow", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:3000/api/v1/feedback/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Chatflow ID" }, { "name": "chatId", "value": "", "type": "query", "description": "Chat ID to filter feedbacks (optional)" }, { "name": "sortOrder", "value": "", "type": "query", "description": "Sort order of feedbacks (optional)" }, { "name": "startDate", "value": "", "type": "query", "description": "Filter feedbacks starting from this date (optional)" }, { "name": "endDate", "value": "", "type": "query", "description": "Filter feedbacks up to this date (optional)" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve all feedbacks for a chatflow" }, { "info": { "name": "Update chat message feedback", "type": "http" }, "http": { "method": "PUT", "url": "http://localhost:3000/api/v1/feedback/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Chat Message Feedback ID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update a specific feedback" } ] } ], "bundled": true }