Zum Hauptinhalt springen
GET
/
knowledgeSource
/
filesConnector
Get files connector
curl --request GET \
  --url https://demo.enneo.ai/api/mind/knowledgeSource/filesConnector \
  --header 'Authorization: Bearer <token>'
{
  "id": 10,
  "name": "Files",
  "type": "file",
  "folderCount": 5,
  "fileCount": 23,
  "data": {
    "allowedExtensions": [
      "pdf",
      "docx",
      "txt"
    ],
    "maxFileSizeMb": 50
  },
  "folders": [
    {
      "id": 11,
      "parent": 10,
      "name": "Sales"
    }
  ],
  "files": [
    {
      "id": 42,
      "parent": 11,
      "name": "Pricing-2026.pdf",
      "title": "Pricing-2026.pdf",
      "source": "Sales/Pricing-2026.pdf",
      "status": "active",
      "originalFileName": "Pricing-2026.pdf",
      "originalMimeType": "application/pdf",
      "originalSize": 2154288,
      "originalUrl": "/api/mind/storage/knowledgeSources/42-abc12345/Pricing-2026.pdf",
      "createdAt": "2023-11-07T05:31:56Z",
      "modifiedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.enneo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Autorisierungen

Authorization
string
header
erforderlich

JWT-based authentication

Antwort

Successful operation

Files connector root object. Manages drag-and-drop document upload into the Knowledge Base.

id
integer

Connector structure ID

Beispiel:

10

name
string

Always "Files"

Beispiel:

"Files"

type
string

Always "file"

Beispiel:

"file"

folderCount
integer

Number of folders under this connector

Beispiel:

5

fileCount
integer

Number of active file articles under this connector

Beispiel:

23

data
object
folders
object[]
files
object[]