Flowise · Capability

Assistants

Assistants is a Naftiko capability published by Flowise, one of 13 capabilities the APIs.io network indexes for this provider.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Run with Naftiko

Capability Spec

assistants.yaml Raw ↑
name: flowise-assistants
description: |
  Manage Flowise assistants. Assistants are persistent, instruction-bound
  conversational agents that can be reused across chatflows and bound to tools
  and document stores.
provider: flowise
api: flowise
authentication:
  type: bearer
baseUrl: http://localhost:3000/api/v1
operations:
  - id: list-assistants
    method: GET
    path: /assistants
    summary: List all assistants
  - id: create-assistant
    method: POST
    path: /assistants
    summary: Create a new assistant
  - id: get-assistant
    method: GET
    path: /assistants/{id}
    summary: Get assistant by ID
  - id: update-assistant
    method: PUT
    path: /assistants/{id}
    summary: Update assistant details
  - id: delete-assistant
    method: DELETE
    path: /assistants/{id}
    summary: Delete an assistant
tags:
  - Assistants
  - Agents