> ## Documentation Index
> Fetch the complete documentation index at: https://docs.autocalls.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Update knowledgebase

> Update an existing knowledgebase

This endpoint updates the name and/or description of an existing knowledgebase.

### Path Parameters

<ParamField path="id" type="integer" required>
  The unique identifier of the knowledgebase to update
</ParamField>

### Request Body

<ParamField body="name" type="string">
  The new name for the knowledgebase (max 255 characters)
</ParamField>

<ParamField body="description" type="string">
  The new description for the knowledgebase (max 255 characters)
</ParamField>

### Response

<ResponseField name="message" type="string">
  Success message
</ResponseField>

<ResponseField name="data" type="object">
  The updated knowledgebase object

  <Expandable title="data properties">
    <ResponseField name="id" type="integer">
      The unique identifier of the knowledgebase
    </ResponseField>

    <ResponseField name="name" type="string">
      The name of the knowledgebase
    </ResponseField>

    <ResponseField name="description" type="string">
      Description of the knowledgebase
    </ResponseField>

    <ResponseField name="status" type="string">
      Current status
    </ResponseField>

    <ResponseField name="status_label" type="string">
      Human-readable status label
    </ResponseField>

    <ResponseField name="updated_at" type="string">
      ISO 8601 timestamp of last update
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 Response theme={null}
  {
    "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"
    }
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "error": "Knowledgebase not found."
  }
  ```

  ```json 422 Validation Error theme={null}
  {
    "message": "The name may not be greater than 255 characters.",
    "errors": {
      "name": [
        "The name may not be greater than 255 characters."
      ]
    }
  }
  ```
</ResponseExample>

<Note>
  Updating a knowledgebase's name or description does not affect its documents or processing status.
</Note>
