Knowledge Base Endpoints
Manage knowledge base articles and categories.
Base Pathβ
/api/knowledge-base
Article Endpointsβ
List Articlesβ
GET /api/knowledge-base/article
Authorization: Bearer {token}
Create Articleβ
POST /api/knowledge-base/article
Authorization: Bearer {token}
{
"name": "How to Track Time",
"data": "<h1>Time Tracking Guide</h1><p>Follow these steps...</p>",
"categoryId": "category-uuid",
"privacy": "PUBLIC",
"index": 1
}
Update Articleβ
PUT /api/knowledge-base/article/:id
Authorization: Bearer {token}
Delete Articleβ
DELETE /api/knowledge-base/article/:id
Authorization: Bearer {token}
Category Endpointsβ
List Categoriesβ
GET /api/knowledge-base/category
Authorization: Bearer {token}
Create Categoryβ
POST /api/knowledge-base/category
Authorization: Bearer {token}
{
"name": "Getting Started",
"description": "Beginner guides",
"icon": "book-outline",
"color": "#3366FF"
}
Article Privacyβ
| Value | Description |
|---|---|
| PUBLIC | Visible to all |
| PRIVATE | Organization only |
Related Pagesβ
- Knowledge Base β feature guide
- Help Center β help center