Overview
Retrieve a paginated list of all Knowledge Bases available in your workspace. This endpoint supports pagination and search, making it easy to browse or locate specific Knowledge Bases.Prerequisites
- Bearer token for an authenticated workspace.
Request
string
required
Bearer token for authenticated workspace access.
integer
Page number to retrieve. Defaults to the first page if omitted.
integer
Maximum number of Knowledge Bases returned per request.
string
Search Knowledge Bases by name.
Response
boolean
required
Indicates whether the request completed successfully.
integer
required
HTTP status code returned by the API.
string
required
Human-readable success message.
array
required
Array containing the Knowledge Bases available in the workspace.
string
Unique identifier of the Knowledge Base.
string
Display name of the Knowledge Base.
string
Description associated with the Knowledge Base.
Response Codes
Error Handling
- 401 Unauthorized – Missing or invalid Bearer token.
- 500 Internal Server Error – Unexpected server error while retrieving Knowledge Bases.
Use the search parameter to quickly locate a specific Knowledge Base by its name.
The returned Knowledge Base ID can be used with:
GET /api/knowledgeBase/{knowledgeBaseId}PUT /api/knowledgeBase/{knowledgeBaseId}DELETE /api/knowledgeBase/{knowledgeBaseId}GET /api/knowledgeBase/{knowledgeBaseId}/documents

