v45

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-0114775543.6 KB
Knowledge Base

Update a knowledge base (name + description)

Updates the metadata of a knowledge base. Note: the platform uses POST (not PATCH) on this path — preserved here as-is.

Only name and description are mutable through this endpoint. To add or remove content (files, URLs, text snippets), use the items endpoints.

post/knowledgebase/{id}

Path parameters

idstring required

24-char hex ObjectId of the knowledge base.

Request body

namestring required

Display name. 1–40 characters; trimmed server-side.

descriptionstring

Optional free-text description shown in the dashboard.

Example request

{
  "name": "Q4 Pricing Updates"
}

Response

Knowledge base updated.

statusboolean

Example response

{
  "status": true
}