Skip to main content
GET
/
user
/
knowledgebases
/
{id}
Получи знаниева база
curl --request GET \
  --url https://call.aiployees.com/api/user/knowledgebases/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 1,
    "name": "Product Documentation",
    "description": "Technical documentation for our products",
    "status": "active",
    "status_label": "Active",
    "documents_count": 5,
    "assistants_count": 2,
    "created_at": "2025-01-05T10:30:00.000000Z",
    "updated_at": "2025-01-08T14:20:00.000000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.aiployees.com/llms.txt

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

Този endpoint връща подробностите на конкретна знаниева база.

Path Parameters

id
integer
required
Уникалният идентификатор на знаниевата база

Response

data
object
Обектът знаниева база
{
  "data": {
    "id": 1,
    "name": "Product Documentation",
    "description": "Technical documentation for our products",
    "status": "active",
    "status_label": "Active",
    "documents_count": 5,
    "assistants_count": 2,
    "created_at": "2025-01-05T10:30:00.000000Z",
    "updated_at": "2025-01-08T14:20:00.000000Z"
  }
}