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
Example request
{
"name": "Q4 Pricing Updates"
}Response
Knowledge base updated.
Example response
{
"status": true
}