Update a knowledge base
PUT/knowledge-bases/:id
Updates the name and/or description of an existing knowledge base. WHEN TO USE: use this when you need to rename or re-describe a knowledge base; use createKnowledgeBase to add one; use deleteKnowledgeBase to remove one. RETURNS: whether the update succeeded.
Request
Version stringrequired
API Version
Available options
v3id stringrequired
The unique identifier of the knowledge base to update
- application/json
- Body
- Example (auto)
Bodyrequired
namestring
field to update the name of the knowledge base
descriptionstring
field to update the description of the knowledge base
{
"name": "My Updated Knowledge Base",
"description": "An updated description for this knowledge base"
}
Knowledge base updated successfully
- application/json
- Schema
- Example (auto)
Schema
successbooleanrequired
Indicates if the update operation was successful
{
"success": true
}