v1
latestOpenAPI 3.0.12026-07-226992320.0 KBKnowledge bases
Update knowledge base
Updates a knowledge base by adding new sources and/or modifying its name. Supported file types include PDF, TXT, HTML, Markdown, and DOCX. Maximum file size is 25 MB.
patch/v1/knowledge-bases/{kbId}
Path parameters
kbIdstring required
Knowledge base id to change.
Query parameters
knowledge_base_namestring
New name, if you want to rename. Names do not need to be unique.
knowledge_base_textsstring
Optional new text sources. Send as one form field whose value is a JSON array string. Example: knowledge_base_texts=["Hello",{"title":"Q","text":"A"}].
knowledge_base_urlsstring
Optional new URL sources. Send as one form field whose value is a JSON array of URL strings (not native repeated fields). Example: knowledge_base_urls=["https://example.com/docs"].
Response
Updated knowledge base.
Example response
{
"kbId": "kb_6sbr3tbMX757M0VD",
"name": "Support FAQs",
"files": [
{
"documentId": "doc_a1b2c3d4e5f67890",
"type": "url",
"content": "https://docs.example.com/guide"
}
],
"createdAt": "2026-05-06T11:15:02.073Z",
"updatedAt": "2026-05-06T11:15:02.073Z"
}