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