API Reference
Update knowledgebase
Update an existing knowledgebase
Updated 25 Jan 2026
On this page
This endpoint updates the name and/or description of an existing knowledgebase.
Path Parameters
idintegerrequired
The unique identifier of the knowledgebase to update
Request Body
namestring
The new name for the knowledgebase (max 255 characters)
descriptionstring
The new description for the knowledgebase (max 255 characters)
Response
messagestring
Success message
dataobject
The updated knowledgebase object
{
"message": "Knowledgebase updated successfully.",
"data": {
"id": 1,
"name": "Updated Product Documentation",
"description": "Updated description for our technical docs",
"status": "active",
"status_label": "Active",
"updated_at": "2025-01-08T15:45:00.000000Z"
}
}
{
"error": "Knowledgebase not found."
}
{
"message": "The name may not be greater than 255 characters.",
"errors": {
"name": [
"The name may not be greater than 255 characters."
]
}
}
Updating a knowledgebase's name or description does not affect its documents or processing status.
Related guides
API Reference
Introduction
Welcome to the VoxLink API
Read guide →API Reference
Authentication
Learn how to authenticate your API requests
Read guide →API Reference
Get current user
Get the authenticated user's profile information
Read guide →API Reference
List assistants
List all assistants for the authenticated user with pagination
Read guide →